facets 1.4.0 → 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1260) hide show
  1. data/ProjectInfo +94 -0
  2. data/Reapfile +184 -0
  3. data/forge/README +13 -0
  4. data/forge/TODO +73 -0
  5. data/forge/autorequire.rb +83 -0
  6. data/forge/core/array/at_rand.rb +95 -0
  7. data/forge/core/array/each_slice.rb +23 -0
  8. data/forge/core/array/pick_values.rb +32 -0
  9. data/forge/core/array/rand_indexes.rb +33 -0
  10. data/forge/core/binding/class.rb +11 -0
  11. data/forge/core/binding/delegate-binding.rb +19 -0
  12. data/forge/core/binding/delegate.rb +15 -0
  13. data/forge/core/binding/proc.rb +6 -0
  14. data/forge/core/enumerable/op_fetch.rb +30 -0
  15. data/forge/core/fileutils/nl_convert.rb +133 -0
  16. data/forge/core/io/expect.rb +127 -0
  17. data/forge/core/kernel/__clone__.rb +4 -0
  18. data/forge/core/kernel/__dup__.rb +4 -0
  19. data/forge/core/kernel/call_line.rb +15 -0
  20. data/forge/core/kernel/does.rb +7 -0
  21. data/forge/core/kernel/message.rb +6 -0
  22. data/forge/core/kernel/query.rb +15 -0
  23. data/forge/core/kernel/taint.rb +10 -0
  24. data/forge/core/logger/clean_logger.rb +10 -0
  25. data/forge/core/module/attr-old.rb +308 -0
  26. data/forge/core/module/attr.rb +98 -0
  27. data/forge/core/module/attr_xxx.rb +22 -0
  28. data/forge/core/module/by_regexp.rb +21 -0
  29. data/forge/core/module/cast.rb +64 -0
  30. data/forge/core/module/class_attribute_accessors.rb +57 -0
  31. data/forge/core/module/inherit.rb +59 -0
  32. data/forge/core/module/let.rb +51 -0
  33. data/forge/core/module/meta_attr.rb +60 -0
  34. data/forge/core/module/module_attribute_accessors.rb +57 -0
  35. data/forge/core/module/permissions.rb +32 -0
  36. data/forge/core/module/preserved.rb +108 -0
  37. data/forge/core/module/sattr_accessor.rb +1 -0
  38. data/forge/core/module/sattr_reader.rb +1 -0
  39. data/forge/core/module/sattr_setter.rb +1 -0
  40. data/forge/core/module/sattr_tester.rb +1 -0
  41. data/forge/core/module/sattr_writer.rb +1 -0
  42. data/forge/core/module/tc_attr.rb +107 -0
  43. data/forge/core/module/version.rb +23 -0
  44. data/forge/core/string/op_add.rb +24 -0
  45. data/forge/core/string/op_div.rb +15 -0
  46. data/forge/core/string/pred.rb +217 -0
  47. data/forge/core/string/to_ary.rb +12 -0
  48. data/forge/core/string/word_wrap.rb +62 -0
  49. data/forge/more/autoarray.rb +29 -0
  50. data/forge/more/cache.rb +189 -0
  51. data/forge/more/class_inheritable_attributes.rb +120 -0
  52. data/forge/more/codepack.rb +58 -0
  53. data/forge/more/commandrunner.rb +101 -0
  54. data/forge/more/conditionals.rb +106 -0
  55. data/forge/more/contracts.rb +37 -0
  56. data/forge/more/daemon.rb +70 -0
  57. data/forge/more/datetime.rb +42 -0
  58. data/forge/more/detach.rb +423 -0
  59. data/forge/more/enumtype.rb +115 -0
  60. data/forge/more/fixnum_const.rb +55 -0
  61. data/forge/more/function.rb +278 -0
  62. data/forge/more/hookse.rb +107 -0
  63. data/forge/more/indexable.rb +85 -0
  64. data/forge/more/infinity.rb +123 -0
  65. data/forge/more/ioreactor.rb +671 -0
  66. data/forge/more/knowself.rb +42 -0
  67. data/forge/more/logger_sing.rb +207 -0
  68. data/forge/more/must.rb +37 -0
  69. data/forge/more/openproxy.rb +245 -0
  70. data/forge/more/ostructable.rb +212 -0
  71. data/forge/more/pairhash.rb +55 -0
  72. data/forge/more/pathname.rb +1309 -0
  73. data/forge/more/predicate.rb +181 -0
  74. data/forge/more/prereq.rb +36 -0
  75. data/forge/more/print_exception.rb +35 -0
  76. data/forge/more/rand.rb +412 -0
  77. data/forge/more/range.rb +383 -0
  78. data/forge/more/sanitize.rb +48 -0
  79. data/forge/more/service.rb +266 -0
  80. data/forge/more/superstruct.rb +735 -0
  81. data/forge/more/tag.rb +27 -0
  82. data/forge/more/testfacility.rb +80 -0
  83. data/forge/more/timer.rb +164 -0
  84. data/forge/more/toplevel.rb +76 -0
  85. data/forge/more/type.rb +232 -0
  86. data/forge/more/vars.rb +94 -0
  87. data/forge/more/version.rb +245 -0
  88. data/forge/more/world.rb +53 -0
  89. data/forge/reference/sys.rb +186 -0
  90. data/forge/reference/utils.rb +518 -0
  91. data/lib/facet/enumerable/mode.rb +1 -0
  92. data/lib/facets/core/enumerable/mode.rb +13 -0
  93. data/lib/facets/core/hash/to_ostruct.rb +1 -1
  94. data/lib/facets/core/hash/to_ostruct_recurse.rb +33 -6
  95. data/lib/facets/core/ostruct/__update__.rb +1 -0
  96. data/lib/facets/more/binaryreader.rb +3 -3
  97. data/lib/facets/more/taskable.rb +29 -0
  98. data/note/CHANGELOG +294 -0
  99. data/note/IMPORTANT +8 -0
  100. data/note/Rakefile.old +181 -0
  101. data/note/history/ANN-0.6.0 +40 -0
  102. data/note/history/ANN-0.6.1 +36 -0
  103. data/note/history/ANN-0.6.3 +43 -0
  104. data/note/history/ANN-0.7.0 +59 -0
  105. data/note/history/ANN-0.8.1 +127 -0
  106. data/note/history/INTRO +172 -0
  107. data/note/history/README +223 -0
  108. data/note/history/README-OLD +180 -0
  109. data/test/lib/facets/core/array/test_at_rand.rb +1 -1
  110. data/test/lib/facets/core/array/test_delete_unless.rb +1 -1
  111. data/test/lib/facets/core/array/test_delete_values.rb +1 -1
  112. data/test/lib/facets/core/array/test_delete_values_at.rb +1 -1
  113. data/test/lib/facets/core/array/test_first.rb +1 -1
  114. data/test/lib/facets/core/array/test_head.rb +1 -1
  115. data/test/lib/facets/core/array/test_last_index.rb +1 -1
  116. data/test/lib/facets/core/array/test_merge.rb +1 -1
  117. data/test/lib/facets/core/array/test_mid.rb +1 -1
  118. data/test/lib/facets/core/array/test_middle.rb +1 -1
  119. data/test/lib/facets/core/array/test_op_fetch.rb +1 -1
  120. data/test/lib/facets/core/array/test_op_store.rb +1 -1
  121. data/test/lib/facets/core/array/test_pick.rb +1 -1
  122. data/test/lib/facets/core/array/test_pos.rb +1 -1
  123. data/test/lib/facets/core/array/test_pot.rb +1 -1
  124. data/test/lib/facets/core/array/test_pull.rb +1 -1
  125. data/test/lib/facets/core/array/test_rand_index.rb +1 -1
  126. data/test/lib/facets/core/array/test_rand_subset.rb +1 -1
  127. data/test/lib/facets/core/array/test_range.rb +1 -1
  128. data/test/lib/facets/core/array/test_rotate.rb +1 -1
  129. data/test/lib/facets/core/array/test_select.rb +1 -1
  130. data/test/lib/facets/core/array/test_shuffle.rb +1 -1
  131. data/test/lib/facets/core/array/test_thru.rb +1 -1
  132. data/test/lib/facets/core/array/test_to_b.rb +1 -1
  133. data/test/lib/facets/core/array/test_to_h.rb +1 -1
  134. data/test/lib/facets/core/array/test_to_hash.rb +1 -1
  135. data/test/lib/facets/core/binding/self/test_of_caller.rb +1 -1
  136. data/test/lib/facets/core/binding/test___LINE__.rb +1 -1
  137. data/test/lib/facets/core/binding/test_call_stack.rb +1 -1
  138. data/test/lib/facets/core/binding/test_called.rb +1 -1
  139. data/test/lib/facets/core/binding/test_caller.rb +1 -1
  140. data/test/lib/facets/core/binding/test_defined.rb +1 -1
  141. data/test/lib/facets/core/binding/test_eval.rb +1 -1
  142. data/test/lib/facets/core/binding/test_local_variables.rb +1 -1
  143. data/test/lib/facets/core/binding/test_method_name.rb +1 -1
  144. data/test/lib/facets/core/binding/test_op_fetch.rb +1 -1
  145. data/test/lib/facets/core/binding/test_op_store.rb +1 -1
  146. data/test/lib/facets/core/binding/test_self.rb +1 -1
  147. data/test/lib/facets/core/class/test_cattr.rb +1 -1
  148. data/test/lib/facets/core/class/test_descendents.rb +1 -1
  149. data/test/lib/facets/core/class/test_method_name.rb +1 -1
  150. data/test/lib/facets/core/class/test_remove_descendents.rb +1 -1
  151. data/test/lib/facets/core/class/test_unix_path.rb +1 -1
  152. data/test/lib/facets/core/comparable/test_at_least.rb +1 -1
  153. data/test/lib/facets/core/comparable/test_clip.rb +1 -1
  154. data/test/lib/facets/core/comparable/test_cmp.rb +1 -1
  155. data/test/lib/facets/core/continuation/self/test_create.rb +1 -1
  156. data/test/lib/facets/core/date/test_days_in_month.rb +1 -1
  157. data/test/lib/facets/core/date/test_days_of_month.rb +1 -1
  158. data/test/lib/facets/core/date/test_stamp.rb +1 -1
  159. data/test/lib/facets/core/date/test_to_date.rb +1 -1
  160. data/test/lib/facets/core/date/test_to_s.rb +1 -1
  161. data/test/lib/facets/core/date/test_to_time.rb +1 -1
  162. data/test/lib/facets/core/dir/self/test_ancestor.rb +1 -1
  163. data/test/lib/facets/core/dir/self/test_ascend.rb +1 -1
  164. data/test/lib/facets/core/enumerable/self/test_combinations.rb +1 -1
  165. data/test/lib/facets/core/enumerable/self/test_cross.rb +1 -1
  166. data/test/lib/facets/core/enumerable/test_collect_with_index.rb +1 -1
  167. data/test/lib/facets/core/enumerable/test_commonality.rb +1 -1
  168. data/test/lib/facets/core/enumerable/test_compact_collect.rb +1 -1
  169. data/test/lib/facets/core/enumerable/test_count.rb +1 -1
  170. data/test/lib/facets/core/enumerable/test_cross.rb +1 -1
  171. data/test/lib/facets/core/enumerable/test_each_combination.rb +1 -1
  172. data/test/lib/facets/core/enumerable/test_each_pair.rb +1 -1
  173. data/test/lib/facets/core/enumerable/test_each_slice.rb +1 -1
  174. data/test/lib/facets/core/enumerable/test_each_unique_pair.rb +1 -1
  175. data/test/lib/facets/core/enumerable/test_entropy.rb +1 -1
  176. data/test/lib/facets/core/enumerable/test_every.rb +1 -1
  177. data/test/lib/facets/core/enumerable/test_ew.rb +1 -1
  178. data/test/lib/facets/core/enumerable/test_filter_collect.rb +1 -1
  179. data/test/lib/facets/core/enumerable/test_find_collisions.rb +1 -1
  180. data/test/lib/facets/core/enumerable/test_frequency.rb +1 -1
  181. data/test/lib/facets/core/enumerable/test_graph.rb +1 -1
  182. data/test/lib/facets/core/enumerable/test_ideal_entropy.rb +1 -1
  183. data/test/lib/facets/core/enumerable/test_none.rb +1 -1
  184. data/test/lib/facets/core/enumerable/test_occur.rb +1 -1
  185. data/test/lib/facets/core/enumerable/test_one.rb +1 -1
  186. data/test/lib/facets/core/enumerable/test_op_pow.rb +1 -1
  187. data/test/lib/facets/core/enumerable/test_partition_by.rb +1 -1
  188. data/test/lib/facets/core/enumerable/test_permute.rb +1 -1
  189. data/test/lib/facets/core/enumerable/test_probability.rb +1 -1
  190. data/test/lib/facets/core/enumerable/test_to_h.rb +1 -1
  191. data/test/lib/facets/core/enumerable/test_uniq_by.rb +1 -1
  192. data/test/lib/facets/core/file/self/test_create.rb +1 -1
  193. data/test/lib/facets/core/file/self/test_open_as_string.rb +1 -1
  194. data/test/lib/facets/core/file/self/test_read_list.rb +1 -1
  195. data/test/lib/facets/core/file/self/test_sanitize.rb +1 -1
  196. data/test/lib/facets/core/file/self/test_split_all.rb +1 -1
  197. data/test/lib/facets/core/float/test_round_at.rb +1 -1
  198. data/test/lib/facets/core/float/test_round_to.rb +1 -1
  199. data/test/lib/facets/core/hash/self/test_zipnew.rb +1 -1
  200. data/test/lib/facets/core/hash/test_alias.rb +1 -1
  201. data/test/lib/facets/core/hash/test_assert_has_keys.rb +1 -1
  202. data/test/lib/facets/core/hash/test_assert_has_only_keys.rb +1 -1
  203. data/test/lib/facets/core/hash/test_at.rb +1 -1
  204. data/test/lib/facets/core/hash/test_collate.rb +1 -1
  205. data/test/lib/facets/core/hash/test_each.rb +1 -1
  206. data/test/lib/facets/core/hash/test_each_with_index.rb +1 -1
  207. data/test/lib/facets/core/hash/test_each_with_key.rb +1 -1
  208. data/test/lib/facets/core/hash/test_graph.rb +1 -1
  209. data/test/lib/facets/core/hash/test_has_keys.rb +1 -1
  210. data/test/lib/facets/core/hash/test_has_only_keys.rb +1 -1
  211. data/test/lib/facets/core/hash/test_inverse.rb +1 -1
  212. data/test/lib/facets/core/hash/test_keys_to_s.rb +1 -1
  213. data/test/lib/facets/core/hash/test_keys_to_sym.rb +1 -1
  214. data/test/lib/facets/core/hash/test_op_fetch.rb +1 -1
  215. data/test/lib/facets/core/hash/test_op_lshift.rb +1 -1
  216. data/test/lib/facets/core/hash/test_rand_key.rb +1 -1
  217. data/test/lib/facets/core/hash/test_rand_pair.rb +1 -1
  218. data/test/lib/facets/core/hash/test_rand_value.rb +1 -1
  219. data/test/lib/facets/core/hash/test_replace_each.rb +1 -1
  220. data/test/lib/facets/core/hash/test_shuffle.rb +1 -1
  221. data/test/lib/facets/core/hash/test_slice.rb +1 -1
  222. data/test/lib/facets/core/hash/test_swap.rb +1 -1
  223. data/test/lib/facets/core/hash/test_swapkey.rb +1 -1
  224. data/test/lib/facets/core/hash/test_to_h.rb +1 -1
  225. data/test/lib/facets/core/hash/test_to_ostruct.rb +1 -1
  226. data/test/lib/facets/core/hash/test_to_ostruct_recurse.rb +15 -1
  227. data/test/lib/facets/core/hash/test_traverse.rb +1 -1
  228. data/test/lib/facets/core/hash/test_update_each.rb +1 -1
  229. data/test/lib/facets/core/hash/test_update_keys.rb +1 -1
  230. data/test/lib/facets/core/hash/test_update_values.rb +1 -1
  231. data/test/lib/facets/core/hash/test_weave.rb +1 -1
  232. data/test/lib/facets/core/integer/test_factorial.rb +1 -1
  233. data/test/lib/facets/core/integer/test_multiple.rb +1 -1
  234. data/test/lib/facets/core/integer/test_ordinal.rb +1 -1
  235. data/test/lib/facets/core/integer/test_times_collect.rb +1 -1
  236. data/test/lib/facets/core/kernel/test___class__.rb +1 -1
  237. data/test/lib/facets/core/kernel/test_as.rb +1 -1
  238. data/test/lib/facets/core/kernel/test_assign_from.rb +1 -1
  239. data/test/lib/facets/core/kernel/test_assign_with.rb +1 -1
  240. data/test/lib/facets/core/kernel/test_bool.rb +1 -1
  241. data/test/lib/facets/core/kernel/test_bug.rb +1 -1
  242. data/test/lib/facets/core/kernel/test_call_stack.rb +1 -1
  243. data/test/lib/facets/core/kernel/test_called.rb +1 -1
  244. data/test/lib/facets/core/kernel/test_constant.rb +1 -1
  245. data/test/lib/facets/core/kernel/test_copy.rb +1 -1
  246. data/test/lib/facets/core/kernel/test_deep_copy.rb +1 -1
  247. data/test/lib/facets/core/kernel/test_demo.rb +1 -1
  248. data/test/lib/facets/core/kernel/test_fn.rb +1 -1
  249. data/test/lib/facets/core/kernel/test_generate_method_name.rb +1 -1
  250. data/test/lib/facets/core/kernel/test_get_by_id.rb +1 -1
  251. data/test/lib/facets/core/kernel/test_here.rb +1 -1
  252. data/test/lib/facets/core/kernel/test_in.rb +1 -1
  253. data/test/lib/facets/core/kernel/test_maybe.rb +1 -1
  254. data/test/lib/facets/core/kernel/test_metaclass.rb +1 -1
  255. data/test/lib/facets/core/kernel/test_method.rb +1 -1
  256. data/test/lib/facets/core/kernel/test_methodname.rb +1 -1
  257. data/test/lib/facets/core/kernel/test_methods.rb +1 -1
  258. data/test/lib/facets/core/kernel/test_new.rb +1 -1
  259. data/test/lib/facets/core/kernel/test_object_class.rb +1 -1
  260. data/test/lib/facets/core/kernel/test_object_hexid.rb +1 -1
  261. data/test/lib/facets/core/kernel/test_require_all.rb +1 -1
  262. data/test/lib/facets/core/kernel/test_require_esc.rb +1 -1
  263. data/test/lib/facets/core/kernel/test_require_facet.rb +1 -1
  264. data/test/lib/facets/core/kernel/test_resc.rb +1 -1
  265. data/test/lib/facets/core/kernel/test_returning.rb +1 -1
  266. data/test/lib/facets/core/kernel/test_send_as.rb +1 -1
  267. data/test/lib/facets/core/kernel/test_set_from.rb +1 -1
  268. data/test/lib/facets/core/kernel/test_set_with.rb +1 -1
  269. data/test/lib/facets/core/kernel/test_silently.rb +1 -1
  270. data/test/lib/facets/core/kernel/test_singleton.rb +1 -1
  271. data/test/lib/facets/core/kernel/test_superior.rb +1 -1
  272. data/test/lib/facets/core/kernel/test_supermethod.rb +1 -1
  273. data/test/lib/facets/core/kernel/test_this.rb +1 -1
  274. data/test/lib/facets/core/kernel/test_to_b.rb +1 -1
  275. data/test/lib/facets/core/kernel/test_to_bool.rb +1 -1
  276. data/test/lib/facets/core/kernel/test_uri.rb +1 -1
  277. data/test/lib/facets/core/kernel/test_val.rb +1 -1
  278. data/test/lib/facets/core/kernel/test_with_accessor.rb +1 -1
  279. data/test/lib/facets/core/matchdata/test_match.rb +1 -1
  280. data/test/lib/facets/core/matchdata/test_matchtree.rb +1 -1
  281. data/test/lib/facets/core/module/test_abstract.rb +1 -1
  282. data/test/lib/facets/core/module/test_alias_module_function.rb +1 -1
  283. data/test/lib/facets/core/module/test_ancestor.rb +1 -1
  284. data/test/lib/facets/core/module/test_basename.rb +1 -1
  285. data/test/lib/facets/core/module/test_by_name.rb +1 -1
  286. data/test/lib/facets/core/module/test_clone_using.rb +1 -1
  287. data/test/lib/facets/core/module/test_dirname.rb +1 -1
  288. data/test/lib/facets/core/module/test_equate_on.rb +1 -1
  289. data/test/lib/facets/core/module/test_generate_instance_method_name.rb +1 -1
  290. data/test/lib/facets/core/module/test_include_as.rb +1 -1
  291. data/test/lib/facets/core/module/test_inherit.rb +1 -1
  292. data/test/lib/facets/core/module/test_initializer.rb +1 -1
  293. data/test/lib/facets/core/module/test_instance_methods.rb +1 -1
  294. data/test/lib/facets/core/module/test_integrate.rb +1 -1
  295. data/test/lib/facets/core/module/test_memoize.rb +1 -1
  296. data/test/lib/facets/core/module/test_modspace.rb +1 -1
  297. data/test/lib/facets/core/module/test_namespace.rb +1 -1
  298. data/test/lib/facets/core/module/test_nesting.rb +1 -1
  299. data/test/lib/facets/core/module/test_nodef.rb +1 -1
  300. data/test/lib/facets/core/module/test_on_included.rb +1 -1
  301. data/test/lib/facets/core/module/test_redef.rb +1 -1
  302. data/test/lib/facets/core/module/test_redefine_method.rb +1 -1
  303. data/test/lib/facets/core/module/test_redirect.rb +1 -1
  304. data/test/lib/facets/core/module/test_redirect_method.rb +1 -1
  305. data/test/lib/facets/core/module/test_remove.rb +1 -1
  306. data/test/lib/facets/core/module/test_rename.rb +1 -1
  307. data/test/lib/facets/core/module/test_rename_method.rb +1 -1
  308. data/test/lib/facets/core/module/test_revisal.rb +1 -1
  309. data/test/lib/facets/core/module/test_shadow_method.rb +1 -1
  310. data/test/lib/facets/core/module/test_sort_on.rb +1 -1
  311. data/test/lib/facets/core/module/test_this.rb +1 -1
  312. data/test/lib/facets/core/module/test_wrap.rb +1 -1
  313. data/test/lib/facets/core/module/test_wrap_method.rb +1 -1
  314. data/test/lib/facets/core/nilclass/test_blank.rb +1 -1
  315. data/test/lib/facets/core/nilclass/test_empty.rb +1 -1
  316. data/test/lib/facets/core/nilclass/test_include.rb +1 -1
  317. data/test/lib/facets/core/nilclass/test_op_fetch.rb +1 -1
  318. data/test/lib/facets/core/nilclass/test_size.rb +1 -1
  319. data/test/lib/facets/core/nilclass/test_to_h.rb +1 -1
  320. data/test/lib/facets/core/numeric/test_approx.rb +1 -1
  321. data/test/lib/facets/core/numeric/test_ceil_multiple.rb +1 -1
  322. data/test/lib/facets/core/numeric/test_succ.rb +1 -1
  323. data/test/lib/facets/core/numeric/test_to_b.rb +1 -1
  324. data/test/lib/facets/core/ostruct/test___merge__.rb +1 -1
  325. data/test/lib/facets/core/ostruct/test___update__.rb +1 -1
  326. data/test/lib/facets/core/ostruct/test_op_fetch.rb +1 -1
  327. data/test/lib/facets/core/ostruct/test_op_store.rb +1 -1
  328. data/test/lib/facets/core/proc/test_compose.rb +1 -1
  329. data/test/lib/facets/core/proc/test_to_method.rb +1 -1
  330. data/test/lib/facets/core/range/test_to_r.rb +1 -1
  331. data/test/lib/facets/core/range/test_to_range.rb +1 -1
  332. data/test/lib/facets/core/range/test_umbrella.rb +1 -1
  333. data/test/lib/facets/core/range/test_within.rb +1 -1
  334. data/test/lib/facets/core/regexp/test_arity.rb +1 -1
  335. data/test/lib/facets/core/regexp/test_to_re.rb +1 -1
  336. data/test/lib/facets/core/regexp/test_to_regexp.rb +1 -1
  337. data/test/lib/facets/core/string/self/test_interpolate.rb +1 -1
  338. data/test/lib/facets/core/string/self/test_patterns.rb +1 -1
  339. data/test/lib/facets/core/string/self/test_rand_letter.rb +1 -1
  340. data/test/lib/facets/core/string/test_align_center.rb +1 -1
  341. data/test/lib/facets/core/string/test_at_rand.rb +1 -1
  342. data/test/lib/facets/core/string/test_basename.rb +1 -1
  343. data/test/lib/facets/core/string/test_blank.rb +1 -1
  344. data/test/lib/facets/core/string/test_bracket.rb +1 -1
  345. data/test/lib/facets/core/string/test_camelcase.rb +1 -1
  346. data/test/lib/facets/core/string/test_camelize.rb +1 -1
  347. data/test/lib/facets/core/string/test_capitalized.rb +1 -1
  348. data/test/lib/facets/core/string/test_chars.rb +1 -1
  349. data/test/lib/facets/core/string/test_cmp.rb +1 -1
  350. data/test/lib/facets/core/string/test_demodulize.rb +1 -1
  351. data/test/lib/facets/core/string/test_downcase.rb +1 -1
  352. data/test/lib/facets/core/string/test_dresner.rb +1 -1
  353. data/test/lib/facets/core/string/test_each_char.rb +1 -1
  354. data/test/lib/facets/core/string/test_each_word.rb +1 -1
  355. data/test/lib/facets/core/string/test_first.rb +1 -1
  356. data/test/lib/facets/core/string/test_fold.rb +1 -1
  357. data/test/lib/facets/core/string/test_frequency.rb +1 -1
  358. data/test/lib/facets/core/string/test_humanize.rb +1 -1
  359. data/test/lib/facets/core/string/test_indent.rb +1 -1
  360. data/test/lib/facets/core/string/test_index_all.rb +1 -1
  361. data/test/lib/facets/core/string/test_last.rb +1 -1
  362. data/test/lib/facets/core/string/test_line_wrap.rb +1 -1
  363. data/test/lib/facets/core/string/test_lines.rb +1 -1
  364. data/test/lib/facets/core/string/test_lowercase.rb +1 -1
  365. data/test/lib/facets/core/string/test_margin.rb +1 -1
  366. data/test/lib/facets/core/string/test_methodize.rb +1 -1
  367. data/test/lib/facets/core/string/test_modulize.rb +1 -1
  368. data/test/lib/facets/core/string/test_mscan.rb +1 -1
  369. data/test/lib/facets/core/string/test_natcmp.rb +1 -1
  370. data/test/lib/facets/core/string/test_nchar.rb +1 -1
  371. data/test/lib/facets/core/string/test_pathize.rb +1 -1
  372. data/test/lib/facets/core/string/test_pop.rb +1 -1
  373. data/test/lib/facets/core/string/test_pot.rb +1 -1
  374. data/test/lib/facets/core/string/test_probability.rb +1 -1
  375. data/test/lib/facets/core/string/test_push.rb +1 -1
  376. data/test/lib/facets/core/string/test_quote.rb +1 -1
  377. data/test/lib/facets/core/string/test_rand_byte.rb +1 -1
  378. data/test/lib/facets/core/string/test_rand_index.rb +1 -1
  379. data/test/lib/facets/core/string/test_range.rb +1 -1
  380. data/test/lib/facets/core/string/test_range_all.rb +1 -1
  381. data/test/lib/facets/core/string/test_range_of_line.rb +1 -1
  382. data/test/lib/facets/core/string/test_regesc.rb +1 -1
  383. data/test/lib/facets/core/string/test_shatter.rb +1 -1
  384. data/test/lib/facets/core/string/test_shift.rb +1 -1
  385. data/test/lib/facets/core/string/test_shuffle.rb +1 -1
  386. data/test/lib/facets/core/string/test_similarity.rb +1 -1
  387. data/test/lib/facets/core/string/test_singular.rb +1 -1
  388. data/test/lib/facets/core/string/test_soundex.rb +1 -1
  389. data/test/lib/facets/core/string/test_succ.rb +1 -1
  390. data/test/lib/facets/core/string/test_to_a.rb +1 -1
  391. data/test/lib/facets/core/string/test_to_b.rb +1 -1
  392. data/test/lib/facets/core/string/test_to_const.rb +1 -1
  393. data/test/lib/facets/core/string/test_to_date.rb +1 -1
  394. data/test/lib/facets/core/string/test_to_proc.rb +1 -1
  395. data/test/lib/facets/core/string/test_to_re.rb +1 -1
  396. data/test/lib/facets/core/string/test_to_time.rb +1 -1
  397. data/test/lib/facets/core/string/test_unix_crypt.rb +1 -1
  398. data/test/lib/facets/core/string/test_unpack.rb +1 -1
  399. data/test/lib/facets/core/string/test_unshift.rb +1 -1
  400. data/test/lib/facets/core/string/test_upcase.rb +1 -1
  401. data/test/lib/facets/core/string/test_whitespace.rb +1 -1
  402. data/test/lib/facets/core/string/test_word_filter.rb +1 -1
  403. data/test/lib/facets/core/string/test_word_wrap.rb +1 -1
  404. data/test/lib/facets/core/string/test_words.rb +1 -1
  405. data/test/lib/facets/core/symbol/test_camelcase.rb +1 -1
  406. data/test/lib/facets/core/symbol/test_camelize.rb +1 -1
  407. data/test/lib/facets/core/symbol/test_capitalize.rb +1 -1
  408. data/test/lib/facets/core/symbol/test_capitalized.rb +1 -1
  409. data/test/lib/facets/core/symbol/test_downcase.rb +1 -1
  410. data/test/lib/facets/core/symbol/test_not.rb +1 -1
  411. data/test/lib/facets/core/symbol/test_pad.rb +1 -1
  412. data/test/lib/facets/core/symbol/test_succ.rb +1 -1
  413. data/test/lib/facets/core/symbol/test_to_const.rb +1 -1
  414. data/test/lib/facets/core/symbol/test_to_proc.rb +1 -1
  415. data/test/lib/facets/core/symbol/test_to_str.rb +1 -1
  416. data/test/lib/facets/core/symbol/test_underscore.rb +1 -1
  417. data/test/lib/facets/core/symbol/test_upcase.rb +1 -1
  418. data/test/lib/facets/core/time/test_change.rb +1 -1
  419. data/test/lib/facets/core/time/test_elapse.rb +1 -1
  420. data/test/lib/facets/core/time/test_stamp.rb +1 -1
  421. data/test/lib/facets/core/time/test_to_date.rb +1 -1
  422. data/test/lib/facets/core/time/test_to_s.rb +1 -1
  423. data/test/lib/facets/core/time/test_to_time.rb +1 -1
  424. data/test/lib/facets/more/test_annattr.rb +1 -1
  425. data/test/lib/facets/more/test_annotation.rb +1 -1
  426. data/test/lib/facets/more/test_ansicode.rb +1 -1
  427. data/test/lib/facets/more/test_association.rb +1 -1
  428. data/test/lib/facets/more/test_basicobject.rb +1 -1
  429. data/test/lib/facets/more/test_bbcode.rb +1 -1
  430. data/test/lib/facets/more/test_binaryreader.rb +1 -1
  431. data/test/lib/facets/more/test_bitmask.rb +1 -1
  432. data/test/lib/facets/more/test_bytes.rb +1 -1
  433. data/test/lib/facets/more/test_classinherit.rb +1 -1
  434. data/test/lib/facets/more/test_classmethods.rb +1 -1
  435. data/test/lib/facets/more/test_coroutine.rb +1 -1
  436. data/test/lib/facets/more/test_crypt.rb +1 -1
  437. data/test/lib/facets/more/test_dictionary.rb +1 -1
  438. data/test/lib/facets/more/test_elementor.rb +1 -1
  439. data/test/lib/facets/more/test_enumerablepass.rb +1 -1
  440. data/test/lib/facets/more/test_floatstring.rb +1 -1
  441. data/test/lib/facets/more/test_functor.rb +1 -1
  442. data/test/lib/facets/more/test_htmlbuilder.rb +1 -1
  443. data/test/lib/facets/more/test_inheritor.rb +1 -1
  444. data/test/lib/facets/more/test_interval.rb +1 -1
  445. data/test/lib/facets/more/test_json.rb +1 -1
  446. data/test/lib/facets/more/test_lisp.rb +1 -1
  447. data/test/lib/facets/more/test_lisp_format.rb +1 -1
  448. data/test/lib/facets/more/test_lrucache.rb +1 -1
  449. data/test/lib/facets/more/test_mathconstants.rb +1 -1
  450. data/test/lib/facets/more/test_methodprobe.rb +1 -1
  451. data/test/lib/facets/more/test_multipliers.rb +1 -1
  452. data/test/lib/facets/more/test_multiton.rb +1 -1
  453. data/test/lib/facets/more/test_nackclass.rb +1 -1
  454. data/test/lib/facets/more/test_nilcomparable.rb +1 -1
  455. data/test/lib/facets/more/test_opencascade.rb +1 -1
  456. data/test/lib/facets/more/test_openobject.rb +1 -1
  457. data/test/lib/facets/more/test_overload.rb +1 -1
  458. data/test/lib/facets/more/test_paramix.rb +1 -1
  459. data/test/lib/facets/more/test_pqueue.rb +1 -1
  460. data/test/lib/facets/more/test_preinitialize.rb +1 -1
  461. data/test/lib/facets/more/test_promoteself.rb +1 -1
  462. data/test/lib/facets/more/test_recorder.rb +1 -1
  463. data/test/lib/facets/more/test_snapshot.rb +1 -1
  464. data/test/lib/facets/more/test_statichash.rb +1 -1
  465. data/test/lib/facets/more/test_syncarray.rb +1 -1
  466. data/test/lib/facets/more/test_synchash.rb +1 -1
  467. data/test/lib/facets/more/test_tagiterator.rb +1 -1
  468. data/test/lib/facets/more/test_taskable.rb +19 -1
  469. data/test/lib/facets/more/test_timer.rb +1 -1
  470. data/test/lib/facets/more/test_times.rb +1 -1
  471. data/test/lib/facets/more/test_tuple.rb +1 -1
  472. data/test/lib/facets/more/test_typecast.rb +1 -1
  473. data/test/lib/facets/more/test_uninheritable.rb +1 -1
  474. data/test/lib/facets/more/test_units.rb +1 -1
  475. data/test/lib/facets/more/test_xmlbuilder.rb +1 -1
  476. data/test/lib/facets/more/test_xmlhelper.rb +1 -1
  477. data/test/lib/facets/more/test_xoxo.rb +1 -1
  478. data/test/lib/facets/more/test_yamlstruct.rb +1 -1
  479. data/web/doc/api/core/classes/Array.html +1356 -0
  480. data/web/doc/api/core/classes/Binding.html +538 -0
  481. data/web/doc/api/core/classes/Class.html +475 -0
  482. data/web/doc/api/core/classes/Comparable.html +231 -0
  483. data/web/doc/api/core/classes/Continuation.html +168 -0
  484. data/web/doc/api/core/classes/Date.html +219 -0
  485. data/web/doc/api/core/classes/Dir.html +208 -0
  486. data/web/doc/api/core/classes/Enumerable.html +1435 -0
  487. data/web/doc/api/core/classes/FalseClass.html +115 -0
  488. data/web/doc/api/core/classes/File.html +349 -0
  489. data/web/doc/api/core/classes/FileUtils.html +468 -0
  490. data/web/doc/api/core/classes/Float.html +157 -0
  491. data/web/doc/api/core/classes/Gem.html +171 -0
  492. data/web/doc/api/core/classes/Hash.html +1657 -0
  493. data/web/doc/api/core/classes/Integer.html +353 -0
  494. data/web/doc/api/core/classes/Kernal.html +86 -0
  495. data/web/doc/api/core/classes/Kernel.html +1972 -0
  496. data/web/doc/api/core/classes/Logger.html +157 -0
  497. data/web/doc/api/core/classes/MatchData.html +195 -0
  498. data/web/doc/api/core/classes/Module.html +1712 -0
  499. data/web/doc/api/core/classes/NackClass.html +92 -0
  500. data/web/doc/api/core/classes/NilClass.html +332 -0
  501. data/web/doc/api/core/classes/Numeric.html +306 -0
  502. data/web/doc/api/core/classes/Object.html +332 -0
  503. data/web/doc/api/core/classes/OpenStruct.html +315 -0
  504. data/web/doc/api/core/classes/Pathname.html +154 -0
  505. data/web/doc/api/core/classes/Proc.html +154 -0
  506. data/web/doc/api/core/classes/Range.html +235 -0
  507. data/web/doc/api/core/classes/Regexp.html +185 -0
  508. data/web/doc/api/core/classes/ScriptBug.html +92 -0
  509. data/web/doc/api/core/classes/String.html +3286 -0
  510. data/web/doc/api/core/classes/Symbol.html +463 -0
  511. data/web/doc/api/core/classes/Time.html +307 -0
  512. data/web/doc/api/core/classes/TrueClass.html +115 -0
  513. data/web/doc/api/core/classes/UnboundMethod.html +121 -0
  514. data/web/doc/api/core/created.rid +1 -0
  515. data/web/doc/api/core/files/AUTHORS.html +206 -0
  516. data/web/doc/api/core/files/COPYING.html +517 -0
  517. data/web/doc/api/core/files/README.html +386 -0
  518. data/web/doc/api/core/files/WARNING.html +151 -0
  519. data/web/doc/api/core/files/lib/facets/core/all_rb.html +96 -0
  520. data/web/doc/api/core/files/lib/facets/core/array/at_rand_rb.html +92 -0
  521. data/web/doc/api/core/files/lib/facets/core/array/body_rb.html +100 -0
  522. data/web/doc/api/core/files/lib/facets/core/array/delete_unless_rb.html +92 -0
  523. data/web/doc/api/core/files/lib/facets/core/array/delete_values_at_rb.html +92 -0
  524. data/web/doc/api/core/files/lib/facets/core/array/delete_values_rb.html +92 -0
  525. data/web/doc/api/core/files/lib/facets/core/array/each_with_key_rb.html +92 -0
  526. data/web/doc/api/core/files/lib/facets/core/array/first_rb.html +96 -0
  527. data/web/doc/api/core/files/lib/facets/core/array/foot_rb.html +100 -0
  528. data/web/doc/api/core/files/lib/facets/core/array/head_rb.html +92 -0
  529. data/web/doc/api/core/files/lib/facets/core/array/join_sentence_rb.html +92 -0
  530. data/web/doc/api/core/files/lib/facets/core/array/last_index_rb.html +92 -0
  531. data/web/doc/api/core/files/lib/facets/core/array/last_rb.html +100 -0
  532. data/web/doc/api/core/files/lib/facets/core/array/merge_rb.html +92 -0
  533. data/web/doc/api/core/files/lib/facets/core/array/mid_rb.html +92 -0
  534. data/web/doc/api/core/files/lib/facets/core/array/middle_rb.html +92 -0
  535. data/web/doc/api/core/files/lib/facets/core/array/op_fetch_rb.html +92 -0
  536. data/web/doc/api/core/files/lib/facets/core/array/op_mod_rb.html +92 -0
  537. data/web/doc/api/core/files/lib/facets/core/array/op_store_rb.html +96 -0
  538. data/web/doc/api/core/files/lib/facets/core/array/pick_rb.html +92 -0
  539. data/web/doc/api/core/files/lib/facets/core/array/pos_rb.html +92 -0
  540. data/web/doc/api/core/files/lib/facets/core/array/pot_rb.html +92 -0
  541. data/web/doc/api/core/files/lib/facets/core/array/pull_rb.html +92 -0
  542. data/web/doc/api/core/files/lib/facets/core/array/rand_index_rb.html +92 -0
  543. data/web/doc/api/core/files/lib/facets/core/array/rand_subset_rb.html +92 -0
  544. data/web/doc/api/core/files/lib/facets/core/array/range_rb.html +92 -0
  545. data/web/doc/api/core/files/lib/facets/core/array/rotate_rb.html +92 -0
  546. data/web/doc/api/core/files/lib/facets/core/array/select_rb.html +92 -0
  547. data/web/doc/api/core/files/lib/facets/core/array/shuffle_rb.html +92 -0
  548. data/web/doc/api/core/files/lib/facets/core/array/store_rb.html +92 -0
  549. data/web/doc/api/core/files/lib/facets/core/array/tail_rb.html +100 -0
  550. data/web/doc/api/core/files/lib/facets/core/array/thru_rb.html +92 -0
  551. data/web/doc/api/core/files/lib/facets/core/array/to_b_rb.html +92 -0
  552. data/web/doc/api/core/files/lib/facets/core/array/to_h_rb.html +92 -0
  553. data/web/doc/api/core/files/lib/facets/core/array/to_hash_rb.html +92 -0
  554. data/web/doc/api/core/files/lib/facets/core/array/unzip_rb.html +92 -0
  555. data/web/doc/api/core/files/lib/facets/core/binding/__DIR___rb.html +100 -0
  556. data/web/doc/api/core/files/lib/facets/core/binding/__FILE___rb.html +100 -0
  557. data/web/doc/api/core/files/lib/facets/core/binding/__LINE___rb.html +96 -0
  558. data/web/doc/api/core/files/lib/facets/core/binding/call_stack_rb.html +97 -0
  559. data/web/doc/api/core/files/lib/facets/core/binding/called_rb.html +96 -0
  560. data/web/doc/api/core/files/lib/facets/core/binding/caller_rb.html +96 -0
  561. data/web/doc/api/core/files/lib/facets/core/binding/defined_rb.html +96 -0
  562. data/web/doc/api/core/files/lib/facets/core/binding/eval_rb.html +92 -0
  563. data/web/doc/api/core/files/lib/facets/core/binding/local_variables_rb.html +96 -0
  564. data/web/doc/api/core/files/lib/facets/core/binding/method_name_rb.html +96 -0
  565. data/web/doc/api/core/files/lib/facets/core/binding/op_fetch_rb.html +97 -0
  566. data/web/doc/api/core/files/lib/facets/core/binding/op_store_rb.html +97 -0
  567. data/web/doc/api/core/files/lib/facets/core/binding/self/of_caller_rb.html +96 -0
  568. data/web/doc/api/core/files/lib/facets/core/binding/self_rb.html +96 -0
  569. data/web/doc/api/core/files/lib/facets/core/binding_rb.html +109 -0
  570. data/web/doc/api/core/files/lib/facets/core/class/by_name_rb.html +96 -0
  571. data/web/doc/api/core/files/lib/facets/core/class/cattr_accessor_rb.html +100 -0
  572. data/web/doc/api/core/files/lib/facets/core/class/cattr_rb.html +92 -0
  573. data/web/doc/api/core/files/lib/facets/core/class/cattr_reader_rb.html +100 -0
  574. data/web/doc/api/core/files/lib/facets/core/class/cattr_writer_rb.html +100 -0
  575. data/web/doc/api/core/files/lib/facets/core/class/descendents_rb.html +92 -0
  576. data/web/doc/api/core/files/lib/facets/core/class/method_name_rb.html +92 -0
  577. data/web/doc/api/core/files/lib/facets/core/class/remove_descendents_rb.html +96 -0
  578. data/web/doc/api/core/files/lib/facets/core/class/remove_subclasses_rb.html +100 -0
  579. data/web/doc/api/core/files/lib/facets/core/class/subclasses_rb.html +100 -0
  580. data/web/doc/api/core/files/lib/facets/core/class/to_proc_rb.html +98 -0
  581. data/web/doc/api/core/files/lib/facets/core/class/unix_path_rb.html +92 -0
  582. data/web/doc/api/core/files/lib/facets/core/comparable/at_least_rb.html +92 -0
  583. data/web/doc/api/core/files/lib/facets/core/comparable/at_most_rb.html +100 -0
  584. data/web/doc/api/core/files/lib/facets/core/comparable/cap_rb.html +100 -0
  585. data/web/doc/api/core/files/lib/facets/core/comparable/clip_rb.html +92 -0
  586. data/web/doc/api/core/files/lib/facets/core/comparable/cmp_rb.html +92 -0
  587. data/web/doc/api/core/files/lib/facets/core/continuation/self/create_rb.html +148 -0
  588. data/web/doc/api/core/files/lib/facets/core/date/days_in_month_rb.html +96 -0
  589. data/web/doc/api/core/files/lib/facets/core/date/days_of_month_rb.html +96 -0
  590. data/web/doc/api/core/files/lib/facets/core/date/stamp_rb.html +96 -0
  591. data/web/doc/api/core/files/lib/facets/core/date/to_date_rb.html +96 -0
  592. data/web/doc/api/core/files/lib/facets/core/date/to_s_rb.html +96 -0
  593. data/web/doc/api/core/files/lib/facets/core/date/to_time_rb.html +96 -0
  594. data/web/doc/api/core/files/lib/facets/core/dir/self/ancestor_rb.html +92 -0
  595. data/web/doc/api/core/files/lib/facets/core/dir/self/ascend_rb.html +92 -0
  596. data/web/doc/api/core/files/lib/facets/core/dir/self/descend_rb.html +92 -0
  597. data/web/doc/api/core/files/lib/facets/core/dir/self/ls_r_rb.html +92 -0
  598. data/web/doc/api/core/files/lib/facets/core/dir/self/recurse_rb.html +100 -0
  599. data/web/doc/api/core/files/lib/facets/core/enumerable/accumulate_rb.html +96 -0
  600. data/web/doc/api/core/files/lib/facets/core/enumerable/collect_if_rb.html +92 -0
  601. data/web/doc/api/core/files/lib/facets/core/enumerable/collect_with_counter_rb.html +100 -0
  602. data/web/doc/api/core/files/lib/facets/core/enumerable/collect_with_index_rb.html +92 -0
  603. data/web/doc/api/core/files/lib/facets/core/enumerable/commonality_rb.html +92 -0
  604. data/web/doc/api/core/files/lib/facets/core/enumerable/compact_collect_rb.html +96 -0
  605. data/web/doc/api/core/files/lib/facets/core/enumerable/compact_map_rb.html +100 -0
  606. data/web/doc/api/core/files/lib/facets/core/enumerable/count_rb.html +92 -0
  607. data/web/doc/api/core/files/lib/facets/core/enumerable/cross_rb.html +96 -0
  608. data/web/doc/api/core/files/lib/facets/core/enumerable/each_by_rb.html +100 -0
  609. data/web/doc/api/core/files/lib/facets/core/enumerable/each_combination_rb.html +92 -0
  610. data/web/doc/api/core/files/lib/facets/core/enumerable/each_pair_rb.html +92 -0
  611. data/web/doc/api/core/files/lib/facets/core/enumerable/each_permutation_rb.html +100 -0
  612. data/web/doc/api/core/files/lib/facets/core/enumerable/each_slice_rb.html +92 -0
  613. data/web/doc/api/core/files/lib/facets/core/enumerable/each_unique_pair_rb.html +96 -0
  614. data/web/doc/api/core/files/lib/facets/core/enumerable/each_with_counter_rb.html +92 -0
  615. data/web/doc/api/core/files/lib/facets/core/enumerable/elementwise_rb.html +100 -0
  616. data/web/doc/api/core/files/lib/facets/core/enumerable/entropy_rb.html +97 -0
  617. data/web/doc/api/core/files/lib/facets/core/enumerable/every_rb.html +96 -0
  618. data/web/doc/api/core/files/lib/facets/core/enumerable/ew_rb.html +96 -0
  619. data/web/doc/api/core/files/lib/facets/core/enumerable/filter_collect_rb.html +92 -0
  620. data/web/doc/api/core/files/lib/facets/core/enumerable/filter_map_rb.html +100 -0
  621. data/web/doc/api/core/files/lib/facets/core/enumerable/find_collisions_rb.html +96 -0
  622. data/web/doc/api/core/files/lib/facets/core/enumerable/frequency_rb.html +92 -0
  623. data/web/doc/api/core/files/lib/facets/core/enumerable/graph_rb.html +96 -0
  624. data/web/doc/api/core/files/lib/facets/core/enumerable/ideal_entropy_rb.html +92 -0
  625. data/web/doc/api/core/files/lib/facets/core/enumerable/map_if_rb.html +100 -0
  626. data/web/doc/api/core/files/lib/facets/core/enumerable/map_with_counter_rb.html +100 -0
  627. data/web/doc/api/core/files/lib/facets/core/enumerable/map_with_index_rb.html +100 -0
  628. data/web/doc/api/core/files/lib/facets/core/enumerable/mode_rb.html +92 -0
  629. data/web/doc/api/core/files/lib/facets/core/enumerable/none_rb.html +92 -0
  630. data/web/doc/api/core/files/lib/facets/core/enumerable/nonuniq_rb.html +92 -0
  631. data/web/doc/api/core/files/lib/facets/core/enumerable/occur_rb.html +92 -0
  632. data/web/doc/api/core/files/lib/facets/core/enumerable/one_rb.html +92 -0
  633. data/web/doc/api/core/files/lib/facets/core/enumerable/op_pow_rb.html +96 -0
  634. data/web/doc/api/core/files/lib/facets/core/enumerable/partition_by_rb.html +92 -0
  635. data/web/doc/api/core/files/lib/facets/core/enumerable/permute_rb.html +96 -0
  636. data/web/doc/api/core/files/lib/facets/core/enumerable/probability_rb.html +92 -0
  637. data/web/doc/api/core/files/lib/facets/core/enumerable/project_rb.html +92 -0
  638. data/web/doc/api/core/files/lib/facets/core/enumerable/self/combinations_rb.html +92 -0
  639. data/web/doc/api/core/files/lib/facets/core/enumerable/self/cross_rb.html +96 -0
  640. data/web/doc/api/core/files/lib/facets/core/enumerable/to_h_rb.html +92 -0
  641. data/web/doc/api/core/files/lib/facets/core/enumerable/uniq_by_rb.html +92 -0
  642. data/web/doc/api/core/files/lib/facets/core/enumerable/where_rb.html +92 -0
  643. data/web/doc/api/core/files/lib/facets/core/file/self/append_rb.html +96 -0
  644. data/web/doc/api/core/files/lib/facets/core/file/self/create_rb.html +92 -0
  645. data/web/doc/api/core/files/lib/facets/core/file/self/open_as_string_rb.html +118 -0
  646. data/web/doc/api/core/files/lib/facets/core/file/self/read_binary_rb.html +96 -0
  647. data/web/doc/api/core/files/lib/facets/core/file/self/read_list_rb.html +97 -0
  648. data/web/doc/api/core/files/lib/facets/core/file/self/sanitize_rb.html +96 -0
  649. data/web/doc/api/core/files/lib/facets/core/file/self/split_all_rb.html +101 -0
  650. data/web/doc/api/core/files/lib/facets/core/file/self/write_rb.html +96 -0
  651. data/web/doc/api/core/files/lib/facets/core/fileutils/head_rb.html +100 -0
  652. data/web/doc/api/core/files/lib/facets/core/fileutils/safe_ln_rb.html +96 -0
  653. data/web/doc/api/core/files/lib/facets/core/fileutils/slice_rb.html +96 -0
  654. data/web/doc/api/core/files/lib/facets/core/fileutils/split_all_rb.html +92 -0
  655. data/web/doc/api/core/files/lib/facets/core/fileutils/tail_rb.html +100 -0
  656. data/web/doc/api/core/files/lib/facets/core/fileutils/wc_rb.html +96 -0
  657. data/web/doc/api/core/files/lib/facets/core/fileutils/whereis_rb.html +96 -0
  658. data/web/doc/api/core/files/lib/facets/core/fileutils/which_rb.html +96 -0
  659. data/web/doc/api/core/files/lib/facets/core/float/approx_rb.html +100 -0
  660. data/web/doc/api/core/files/lib/facets/core/float/round_at_rb.html +96 -0
  661. data/web/doc/api/core/files/lib/facets/core/float/round_off_rb.html +92 -0
  662. data/web/doc/api/core/files/lib/facets/core/float/round_to_rb.html +96 -0
  663. data/web/doc/api/core/files/lib/facets/core/gem/self/active_rb.html +92 -0
  664. data/web/doc/api/core/files/lib/facets/core/gem/self/gemdir_rb.html +96 -0
  665. data/web/doc/api/core/files/lib/facets/core/gem/self/gempath_rb.html +96 -0
  666. data/web/doc/api/core/files/lib/facets/core/gem/self/gemspec_rb.html +96 -0
  667. data/web/doc/api/core/files/lib/facets/core/hash/alias_rb.html +92 -0
  668. data/web/doc/api/core/files/lib/facets/core/hash/assert_has_keys_rb.html +96 -0
  669. data/web/doc/api/core/files/lib/facets/core/hash/assert_has_only_keys_rb.html +96 -0
  670. data/web/doc/api/core/files/lib/facets/core/hash/at_rb.html +92 -0
  671. data/web/doc/api/core/files/lib/facets/core/hash/collate_rb.html +92 -0
  672. data/web/doc/api/core/files/lib/facets/core/hash/delete_unless_rb.html +96 -0
  673. data/web/doc/api/core/files/lib/facets/core/hash/each_rb.html +92 -0
  674. data/web/doc/api/core/files/lib/facets/core/hash/each_with_index_rb.html +97 -0
  675. data/web/doc/api/core/files/lib/facets/core/hash/each_with_key_rb.html +92 -0
  676. data/web/doc/api/core/files/lib/facets/core/hash/graph_rb.html +96 -0
  677. data/web/doc/api/core/files/lib/facets/core/hash/has_keys_rb.html +92 -0
  678. data/web/doc/api/core/files/lib/facets/core/hash/has_only_keys_rb.html +92 -0
  679. data/web/doc/api/core/files/lib/facets/core/hash/inverse_rb.html +92 -0
  680. data/web/doc/api/core/files/lib/facets/core/hash/join_rb.html +92 -0
  681. data/web/doc/api/core/files/lib/facets/core/hash/keys_to_iv_rb.html +92 -0
  682. data/web/doc/api/core/files/lib/facets/core/hash/keys_to_s_rb.html +92 -0
  683. data/web/doc/api/core/files/lib/facets/core/hash/keys_to_sym_rb.html +92 -0
  684. data/web/doc/api/core/files/lib/facets/core/hash/op_fetch_rb.html +96 -0
  685. data/web/doc/api/core/files/lib/facets/core/hash/op_lshift_rb.html +92 -0
  686. data/web/doc/api/core/files/lib/facets/core/hash/op_store_rb.html +100 -0
  687. data/web/doc/api/core/files/lib/facets/core/hash/rand_key_rb.html +92 -0
  688. data/web/doc/api/core/files/lib/facets/core/hash/rand_pair_rb.html +96 -0
  689. data/web/doc/api/core/files/lib/facets/core/hash/rand_value_rb.html +96 -0
  690. data/web/doc/api/core/files/lib/facets/core/hash/replace_each_rb.html +92 -0
  691. data/web/doc/api/core/files/lib/facets/core/hash/self/zipnew_rb.html +92 -0
  692. data/web/doc/api/core/files/lib/facets/core/hash/shuffle_rb.html +96 -0
  693. data/web/doc/api/core/files/lib/facets/core/hash/slice_rb.html +92 -0
  694. data/web/doc/api/core/files/lib/facets/core/hash/stringify_keys_rb.html +100 -0
  695. data/web/doc/api/core/files/lib/facets/core/hash/swap_rb.html +92 -0
  696. data/web/doc/api/core/files/lib/facets/core/hash/swapkey_rb.html +92 -0
  697. data/web/doc/api/core/files/lib/facets/core/hash/symoblize_keys_rb.html +100 -0
  698. data/web/doc/api/core/files/lib/facets/core/hash/to_h_rb.html +92 -0
  699. data/web/doc/api/core/files/lib/facets/core/hash/to_ostruct_rb.html +96 -0
  700. data/web/doc/api/core/files/lib/facets/core/hash/to_ostruct_recurse_rb.html +97 -0
  701. data/web/doc/api/core/files/lib/facets/core/hash/to_proc_rb.html +92 -0
  702. data/web/doc/api/core/files/lib/facets/core/hash/traverse_rb.html +92 -0
  703. data/web/doc/api/core/files/lib/facets/core/hash/update_each_rb.html +92 -0
  704. data/web/doc/api/core/files/lib/facets/core/hash/update_keys_rb.html +92 -0
  705. data/web/doc/api/core/files/lib/facets/core/hash/update_values_rb.html +92 -0
  706. data/web/doc/api/core/files/lib/facets/core/hash/variablize_keys_rb.html +100 -0
  707. data/web/doc/api/core/files/lib/facets/core/hash/weave_rb.html +92 -0
  708. data/web/doc/api/core/files/lib/facets/core/inflect_rb.html +117 -0
  709. data/web/doc/api/core/files/lib/facets/core/integer/even_rb.html +100 -0
  710. data/web/doc/api/core/files/lib/facets/core/integer/fac_rb.html +100 -0
  711. data/web/doc/api/core/files/lib/facets/core/integer/fact_rb.html +100 -0
  712. data/web/doc/api/core/files/lib/facets/core/integer/factorial_rb.html +92 -0
  713. data/web/doc/api/core/files/lib/facets/core/integer/multiple_rb.html +92 -0
  714. data/web/doc/api/core/files/lib/facets/core/integer/odd_rb.html +100 -0
  715. data/web/doc/api/core/files/lib/facets/core/integer/ordinal_rb.html +92 -0
  716. data/web/doc/api/core/files/lib/facets/core/integer/times_collect_rb.html +92 -0
  717. data/web/doc/api/core/files/lib/facets/core/integer/times_map_rb.html +100 -0
  718. data/web/doc/api/core/files/lib/facets/core/kernel/__DIR___rb.html +92 -0
  719. data/web/doc/api/core/files/lib/facets/core/kernel/__class___rb.html +92 -0
  720. data/web/doc/api/core/files/lib/facets/core/kernel/__get___rb.html +92 -0
  721. data/web/doc/api/core/files/lib/facets/core/kernel/__self___rb.html +96 -0
  722. data/web/doc/api/core/files/lib/facets/core/kernel/__set___rb.html +100 -0
  723. data/web/doc/api/core/files/lib/facets/core/kernel/adhoc_rb.html +99 -0
  724. data/web/doc/api/core/files/lib/facets/core/kernel/as_rb.html +96 -0
  725. data/web/doc/api/core/files/lib/facets/core/kernel/assign_from_rb.html +96 -0
  726. data/web/doc/api/core/files/lib/facets/core/kernel/assign_with_rb.html +97 -0
  727. data/web/doc/api/core/files/lib/facets/core/kernel/autoreload_files_rb.html +100 -0
  728. data/web/doc/api/core/files/lib/facets/core/kernel/autoreload_glob_rb.html +100 -0
  729. data/web/doc/api/core/files/lib/facets/core/kernel/autoreload_rb.html +92 -0
  730. data/web/doc/api/core/files/lib/facets/core/kernel/bool_rb.html +92 -0
  731. data/web/doc/api/core/files/lib/facets/core/kernel/bug_rb.html +92 -0
  732. data/web/doc/api/core/files/lib/facets/core/kernel/cache_rb.html +92 -0
  733. data/web/doc/api/core/files/lib/facets/core/kernel/call_stack_rb.html +92 -0
  734. data/web/doc/api/core/files/lib/facets/core/kernel/called_rb.html +92 -0
  735. data/web/doc/api/core/files/lib/facets/core/kernel/complete_rb.html +92 -0
  736. data/web/doc/api/core/files/lib/facets/core/kernel/constant_rb.html +92 -0
  737. data/web/doc/api/core/files/lib/facets/core/kernel/copy_rb.html +92 -0
  738. data/web/doc/api/core/files/lib/facets/core/kernel/deep_copy_rb.html +92 -0
  739. data/web/doc/api/core/files/lib/facets/core/kernel/demo_rb.html +92 -0
  740. data/web/doc/api/core/files/lib/facets/core/kernel/eigenclass_rb.html +103 -0
  741. data/web/doc/api/core/files/lib/facets/core/kernel/false_rb.html +100 -0
  742. data/web/doc/api/core/files/lib/facets/core/kernel/fn_rb.html +92 -0
  743. data/web/doc/api/core/files/lib/facets/core/kernel/generate_method_name_rb.html +92 -0
  744. data/web/doc/api/core/files/lib/facets/core/kernel/get_by_id_rb.html +92 -0
  745. data/web/doc/api/core/files/lib/facets/core/kernel/here_rb.html +92 -0
  746. data/web/doc/api/core/files/lib/facets/core/kernel/in_rb.html +92 -0
  747. data/web/doc/api/core/files/lib/facets/core/kernel/instance_assign_rb.html +92 -0
  748. data/web/doc/api/core/files/lib/facets/core/kernel/instvar_rb.html +92 -0
  749. data/web/doc/api/core/files/lib/facets/core/kernel/is_rb.html +96 -0
  750. data/web/doc/api/core/files/lib/facets/core/kernel/maybe_rb.html +92 -0
  751. data/web/doc/api/core/files/lib/facets/core/kernel/me_rb.html +92 -0
  752. data/web/doc/api/core/files/lib/facets/core/kernel/metaclass_rb.html +92 -0
  753. data/web/doc/api/core/files/lib/facets/core/kernel/method_name_rb.html +100 -0
  754. data/web/doc/api/core/files/lib/facets/core/kernel/method_rb.html +92 -0
  755. data/web/doc/api/core/files/lib/facets/core/kernel/methodname_rb.html +92 -0
  756. data/web/doc/api/core/files/lib/facets/core/kernel/methods_rb.html +96 -0
  757. data/web/doc/api/core/files/lib/facets/core/kernel/nack_rb.html +98 -0
  758. data/web/doc/api/core/files/lib/facets/core/kernel/new_rb.html +92 -0
  759. data/web/doc/api/core/files/lib/facets/core/kernel/object_class_rb.html +92 -0
  760. data/web/doc/api/core/files/lib/facets/core/kernel/object_hexid_rb.html +92 -0
  761. data/web/doc/api/core/files/lib/facets/core/kernel/op_esc_rb.html +92 -0
  762. data/web/doc/api/core/files/lib/facets/core/kernel/own_rb.html +92 -0
  763. data/web/doc/api/core/files/lib/facets/core/kernel/p_rb.html +92 -0
  764. data/web/doc/api/core/files/lib/facets/core/kernel/pp_exception_rb.html +92 -0
  765. data/web/doc/api/core/files/lib/facets/core/kernel/require_all_rb.html +92 -0
  766. data/web/doc/api/core/files/lib/facets/core/kernel/require_esc_rb.html +96 -0
  767. data/web/doc/api/core/files/lib/facets/core/kernel/require_facet_rb.html +96 -0
  768. data/web/doc/api/core/files/lib/facets/core/kernel/require_local_rb.html +92 -0
  769. data/web/doc/api/core/files/lib/facets/core/kernel/resc_rb.html +92 -0
  770. data/web/doc/api/core/files/lib/facets/core/kernel/respond_rb.html +92 -0
  771. data/web/doc/api/core/files/lib/facets/core/kernel/returning_rb.html +92 -0
  772. data/web/doc/api/core/files/lib/facets/core/kernel/send_as_rb.html +92 -0
  773. data/web/doc/api/core/files/lib/facets/core/kernel/set_from_rb.html +96 -0
  774. data/web/doc/api/core/files/lib/facets/core/kernel/set_with_rb.html +96 -0
  775. data/web/doc/api/core/files/lib/facets/core/kernel/silence_warnings_rb.html +100 -0
  776. data/web/doc/api/core/files/lib/facets/core/kernel/silently_rb.html +92 -0
  777. data/web/doc/api/core/files/lib/facets/core/kernel/singleton_rb.html +92 -0
  778. data/web/doc/api/core/files/lib/facets/core/kernel/superior_rb.html +92 -0
  779. data/web/doc/api/core/files/lib/facets/core/kernel/supermethod_rb.html +92 -0
  780. data/web/doc/api/core/files/lib/facets/core/kernel/this_rb.html +92 -0
  781. data/web/doc/api/core/files/lib/facets/core/kernel/to_b_rb.html +92 -0
  782. data/web/doc/api/core/files/lib/facets/core/kernel/to_bool_rb.html +92 -0
  783. data/web/doc/api/core/files/lib/facets/core/kernel/true_rb.html +100 -0
  784. data/web/doc/api/core/files/lib/facets/core/kernel/unuri_rb.html +100 -0
  785. data/web/doc/api/core/files/lib/facets/core/kernel/uri_rb.html +96 -0
  786. data/web/doc/api/core/files/lib/facets/core/kernel/val_rb.html +92 -0
  787. data/web/doc/api/core/files/lib/facets/core/kernel/warn_with_line_rb.html +92 -0
  788. data/web/doc/api/core/files/lib/facets/core/kernel/with_accessor_rb.html +92 -0
  789. data/web/doc/api/core/files/lib/facets/core/kernel/with_reader_rb.html +100 -0
  790. data/web/doc/api/core/files/lib/facets/core/kernel/with_writer_rb.html +100 -0
  791. data/web/doc/api/core/files/lib/facets/core/logger/format_message_rb.html +96 -0
  792. data/web/doc/api/core/files/lib/facets/core/logger/format_rb.html +96 -0
  793. data/web/doc/api/core/files/lib/facets/core/matchdata/match_rb.html +92 -0
  794. data/web/doc/api/core/files/lib/facets/core/matchdata/matchset_rb.html +100 -0
  795. data/web/doc/api/core/files/lib/facets/core/matchdata/matchtree_rb.html +92 -0
  796. data/web/doc/api/core/files/lib/facets/core/module/abstract_rb.html +105 -0
  797. data/web/doc/api/core/files/lib/facets/core/module/alias_module_function_rb.html +92 -0
  798. data/web/doc/api/core/files/lib/facets/core/module/ancestor_rb.html +92 -0
  799. data/web/doc/api/core/files/lib/facets/core/module/attr_query_rb.html +96 -0
  800. data/web/doc/api/core/files/lib/facets/core/module/attr_rb.html +92 -0
  801. data/web/doc/api/core/files/lib/facets/core/module/attr_setter_rb.html +92 -0
  802. data/web/doc/api/core/files/lib/facets/core/module/attr_tester_rb.html +96 -0
  803. data/web/doc/api/core/files/lib/facets/core/module/attr_validator_rb.html +92 -0
  804. data/web/doc/api/core/files/lib/facets/core/module/basename_rb.html +92 -0
  805. data/web/doc/api/core/files/lib/facets/core/module/by_name_rb.html +96 -0
  806. data/web/doc/api/core/files/lib/facets/core/module/class_rb.html +92 -0
  807. data/web/doc/api/core/files/lib/facets/core/module/clone_removing_rb.html +100 -0
  808. data/web/doc/api/core/files/lib/facets/core/module/clone_renaming_rb.html +100 -0
  809. data/web/doc/api/core/files/lib/facets/core/module/clone_using_rb.html +92 -0
  810. data/web/doc/api/core/files/lib/facets/core/module/dirname_rb.html +92 -0
  811. data/web/doc/api/core/files/lib/facets/core/module/equate_on_rb.html +92 -0
  812. data/web/doc/api/core/files/lib/facets/core/module/generate_instance_method_name_rb.html +92 -0
  813. data/web/doc/api/core/files/lib/facets/core/module/include_as_rb.html +96 -0
  814. data/web/doc/api/core/files/lib/facets/core/module/inherit_rb.html +96 -0
  815. data/web/doc/api/core/files/lib/facets/core/module/initializer_rb.html +92 -0
  816. data/web/doc/api/core/files/lib/facets/core/module/instance_methods_rb.html +96 -0
  817. data/web/doc/api/core/files/lib/facets/core/module/integrate_rb.html +104 -0
  818. data/web/doc/api/core/files/lib/facets/core/module/is_rb.html +96 -0
  819. data/web/doc/api/core/files/lib/facets/core/module/memoize_rb.html +92 -0
  820. data/web/doc/api/core/files/lib/facets/core/module/modspace_rb.html +97 -0
  821. data/web/doc/api/core/files/lib/facets/core/module/namespace_rb.html +96 -0
  822. data/web/doc/api/core/files/lib/facets/core/module/nesting_rb.html +92 -0
  823. data/web/doc/api/core/files/lib/facets/core/module/nodef_rb.html +92 -0
  824. data/web/doc/api/core/files/lib/facets/core/module/on_included_rb.html +92 -0
  825. data/web/doc/api/core/files/lib/facets/core/module/redef_rb.html +96 -0
  826. data/web/doc/api/core/files/lib/facets/core/module/redefine_method_rb.html +92 -0
  827. data/web/doc/api/core/files/lib/facets/core/module/redirect_method_rb.html +92 -0
  828. data/web/doc/api/core/files/lib/facets/core/module/redirect_rb.html +96 -0
  829. data/web/doc/api/core/files/lib/facets/core/module/remove_rb.html +92 -0
  830. data/web/doc/api/core/files/lib/facets/core/module/rename_method_rb.html +92 -0
  831. data/web/doc/api/core/files/lib/facets/core/module/rename_rb.html +96 -0
  832. data/web/doc/api/core/files/lib/facets/core/module/revisal_rb.html +100 -0
  833. data/web/doc/api/core/files/lib/facets/core/module/shadow_all_rb.html +96 -0
  834. data/web/doc/api/core/files/lib/facets/core/module/shadow_method_rb.html +92 -0
  835. data/web/doc/api/core/files/lib/facets/core/module/singleton_to_module_rb.html +92 -0
  836. data/web/doc/api/core/files/lib/facets/core/module/sort_on_rb.html +92 -0
  837. data/web/doc/api/core/files/lib/facets/core/module/this_rb.html +96 -0
  838. data/web/doc/api/core/files/lib/facets/core/module/wrap_method_rb.html +92 -0
  839. data/web/doc/api/core/files/lib/facets/core/module/wrap_rb.html +96 -0
  840. data/web/doc/api/core/files/lib/facets/core/nil_as_emptiness_rb.html +116 -0
  841. data/web/doc/api/core/files/lib/facets/core/nilclass/blank_rb.html +92 -0
  842. data/web/doc/api/core/files/lib/facets/core/nilclass/empty_rb.html +92 -0
  843. data/web/doc/api/core/files/lib/facets/core/nilclass/include_rb.html +92 -0
  844. data/web/doc/api/core/files/lib/facets/core/nilclass/length_rb.html +100 -0
  845. data/web/doc/api/core/files/lib/facets/core/nilclass/op_cmp_rb.html +92 -0
  846. data/web/doc/api/core/files/lib/facets/core/nilclass/op_fetch_rb.html +92 -0
  847. data/web/doc/api/core/files/lib/facets/core/nilclass/size_rb.html +92 -0
  848. data/web/doc/api/core/files/lib/facets/core/nilclass/succ_rb.html +92 -0
  849. data/web/doc/api/core/files/lib/facets/core/nilclass/to_h_rb.html +92 -0
  850. data/web/doc/api/core/files/lib/facets/core/numeric/approx_rb.html +92 -0
  851. data/web/doc/api/core/files/lib/facets/core/numeric/ceil_multiple_rb.html +92 -0
  852. data/web/doc/api/core/files/lib/facets/core/numeric/pred_rb.html +100 -0
  853. data/web/doc/api/core/files/lib/facets/core/numeric/succ_rb.html +92 -0
  854. data/web/doc/api/core/files/lib/facets/core/numeric/to_b_rb.html +92 -0
  855. data/web/doc/api/core/files/lib/facets/core/ostruct/__merge___rb.html +97 -0
  856. data/web/doc/api/core/files/lib/facets/core/ostruct/__table___rb.html +92 -0
  857. data/web/doc/api/core/files/lib/facets/core/ostruct/__update___rb.html +98 -0
  858. data/web/doc/api/core/files/lib/facets/core/ostruct/instance_rb.html +96 -0
  859. data/web/doc/api/core/files/lib/facets/core/ostruct/op_fetch_rb.html +96 -0
  860. data/web/doc/api/core/files/lib/facets/core/ostruct/op_store_rb.html +96 -0
  861. data/web/doc/api/core/files/lib/facets/core/ostruct/to_h_rb.html +92 -0
  862. data/web/doc/api/core/files/lib/facets/core/ostruct_rb.html +102 -0
  863. data/web/doc/api/core/files/lib/facets/core/pathname/ascend_rb.html +96 -0
  864. data/web/doc/api/core/files/lib/facets/core/pathname/descend_rb.html +96 -0
  865. data/web/doc/api/core/files/lib/facets/core/proc/compose_rb.html +92 -0
  866. data/web/doc/api/core/files/lib/facets/core/proc/op_mul_rb.html +100 -0
  867. data/web/doc/api/core/files/lib/facets/core/proc/to_method_rb.html +133 -0
  868. data/web/doc/api/core/files/lib/facets/core/random_rb.html +111 -0
  869. data/web/doc/api/core/files/lib/facets/core/range/to_r_rb.html +92 -0
  870. data/web/doc/api/core/files/lib/facets/core/range/to_range_rb.html +92 -0
  871. data/web/doc/api/core/files/lib/facets/core/range/umbrella_rb.html +92 -0
  872. data/web/doc/api/core/files/lib/facets/core/range/within_rb.html +96 -0
  873. data/web/doc/api/core/files/lib/facets/core/regexp/arity_rb.html +92 -0
  874. data/web/doc/api/core/files/lib/facets/core/regexp/to_re_rb.html +92 -0
  875. data/web/doc/api/core/files/lib/facets/core/regexp/to_regexp_rb.html +92 -0
  876. data/web/doc/api/core/files/lib/facets/core/string/align_center_rb.html +92 -0
  877. data/web/doc/api/core/files/lib/facets/core/string/align_left_rb.html +100 -0
  878. data/web/doc/api/core/files/lib/facets/core/string/align_right_rb.html +100 -0
  879. data/web/doc/api/core/files/lib/facets/core/string/at_rand_rb.html +98 -0
  880. data/web/doc/api/core/files/lib/facets/core/string/at_rb.html +92 -0
  881. data/web/doc/api/core/files/lib/facets/core/string/basename_rb.html +92 -0
  882. data/web/doc/api/core/files/lib/facets/core/string/blank_rb.html +92 -0
  883. data/web/doc/api/core/files/lib/facets/core/string/bracket_rb.html +92 -0
  884. data/web/doc/api/core/files/lib/facets/core/string/brief_rb.html +92 -0
  885. data/web/doc/api/core/files/lib/facets/core/string/bytes_rb.html +92 -0
  886. data/web/doc/api/core/files/lib/facets/core/string/camelcase_rb.html +92 -0
  887. data/web/doc/api/core/files/lib/facets/core/string/camelize_rb.html +92 -0
  888. data/web/doc/api/core/files/lib/facets/core/string/capitalized_rb.html +92 -0
  889. data/web/doc/api/core/files/lib/facets/core/string/chars_rb.html +92 -0
  890. data/web/doc/api/core/files/lib/facets/core/string/cmp_rb.html +92 -0
  891. data/web/doc/api/core/files/lib/facets/core/string/demodulize_rb.html +96 -0
  892. data/web/doc/api/core/files/lib/facets/core/string/dequote_rb.html +92 -0
  893. data/web/doc/api/core/files/lib/facets/core/string/downcase_rb.html +92 -0
  894. data/web/doc/api/core/files/lib/facets/core/string/dresner_rb.html +92 -0
  895. data/web/doc/api/core/files/lib/facets/core/string/each_char_rb.html +92 -0
  896. data/web/doc/api/core/files/lib/facets/core/string/each_word_rb.html +92 -0
  897. data/web/doc/api/core/files/lib/facets/core/string/ends_with_rb.html +100 -0
  898. data/web/doc/api/core/files/lib/facets/core/string/first_char_rb.html +96 -0
  899. data/web/doc/api/core/files/lib/facets/core/string/first_rb.html +98 -0
  900. data/web/doc/api/core/files/lib/facets/core/string/fold_rb.html +92 -0
  901. data/web/doc/api/core/files/lib/facets/core/string/format_rb.html +96 -0
  902. data/web/doc/api/core/files/lib/facets/core/string/frequency_rb.html +97 -0
  903. data/web/doc/api/core/files/lib/facets/core/string/humanize_rb.html +92 -0
  904. data/web/doc/api/core/files/lib/facets/core/string/indent_rb.html +92 -0
  905. data/web/doc/api/core/files/lib/facets/core/string/index_all_rb.html +92 -0
  906. data/web/doc/api/core/files/lib/facets/core/string/last_char_rb.html +96 -0
  907. data/web/doc/api/core/files/lib/facets/core/string/last_rb.html +98 -0
  908. data/web/doc/api/core/files/lib/facets/core/string/line_wrap_rb.html +92 -0
  909. data/web/doc/api/core/files/lib/facets/core/string/lines_rb.html +92 -0
  910. data/web/doc/api/core/files/lib/facets/core/string/lowercase_rb.html +96 -0
  911. data/web/doc/api/core/files/lib/facets/core/string/margin_rb.html +92 -0
  912. data/web/doc/api/core/files/lib/facets/core/string/methodize_rb.html +92 -0
  913. data/web/doc/api/core/files/lib/facets/core/string/modulize_rb.html +92 -0
  914. data/web/doc/api/core/files/lib/facets/core/string/mscan_rb.html +92 -0
  915. data/web/doc/api/core/files/lib/facets/core/string/natcmp_rb.html +92 -0
  916. data/web/doc/api/core/files/lib/facets/core/string/nchar_rb.html +92 -0
  917. data/web/doc/api/core/files/lib/facets/core/string/ordinal_rb.html +96 -0
  918. data/web/doc/api/core/files/lib/facets/core/string/pathize_rb.html +92 -0
  919. data/web/doc/api/core/files/lib/facets/core/string/plural_rb.html +100 -0
  920. data/web/doc/api/core/files/lib/facets/core/string/pop_rb.html +92 -0
  921. data/web/doc/api/core/files/lib/facets/core/string/pot_rb.html +92 -0
  922. data/web/doc/api/core/files/lib/facets/core/string/probability_rb.html +97 -0
  923. data/web/doc/api/core/files/lib/facets/core/string/pull_rb.html +92 -0
  924. data/web/doc/api/core/files/lib/facets/core/string/push_rb.html +92 -0
  925. data/web/doc/api/core/files/lib/facets/core/string/quote_rb.html +96 -0
  926. data/web/doc/api/core/files/lib/facets/core/string/rand_byte_rb.html +92 -0
  927. data/web/doc/api/core/files/lib/facets/core/string/rand_index_rb.html +92 -0
  928. data/web/doc/api/core/files/lib/facets/core/string/range_all_rb.html +96 -0
  929. data/web/doc/api/core/files/lib/facets/core/string/range_of_line_rb.html +92 -0
  930. data/web/doc/api/core/files/lib/facets/core/string/range_rb.html +92 -0
  931. data/web/doc/api/core/files/lib/facets/core/string/regesc_rb.html +92 -0
  932. data/web/doc/api/core/files/lib/facets/core/string/self/format_rb.html +92 -0
  933. data/web/doc/api/core/files/lib/facets/core/string/self/interpolate_rb.html +92 -0
  934. data/web/doc/api/core/files/lib/facets/core/string/self/patterns_rb.html +92 -0
  935. data/web/doc/api/core/files/lib/facets/core/string/self/rand_letter_rb.html +92 -0
  936. data/web/doc/api/core/files/lib/facets/core/string/self/random_rb.html +99 -0
  937. data/web/doc/api/core/files/lib/facets/core/string/shatter_rb.html +92 -0
  938. data/web/doc/api/core/files/lib/facets/core/string/shell_escape_rb.html +92 -0
  939. data/web/doc/api/core/files/lib/facets/core/string/shift_rb.html +92 -0
  940. data/web/doc/api/core/files/lib/facets/core/string/shuffle_rb.html +96 -0
  941. data/web/doc/api/core/files/lib/facets/core/string/similarity_rb.html +92 -0
  942. data/web/doc/api/core/files/lib/facets/core/string/singular_rb.html +92 -0
  943. data/web/doc/api/core/files/lib/facets/core/string/soundex_rb.html +92 -0
  944. data/web/doc/api/core/files/lib/facets/core/string/starts_with_rb.html +92 -0
  945. data/web/doc/api/core/files/lib/facets/core/string/succ_rb.html +92 -0
  946. data/web/doc/api/core/files/lib/facets/core/string/tab_rb.html +100 -0
  947. data/web/doc/api/core/files/lib/facets/core/string/tabto_rb.html +100 -0
  948. data/web/doc/api/core/files/lib/facets/core/string/to_a_rb.html +92 -0
  949. data/web/doc/api/core/files/lib/facets/core/string/to_b_rb.html +92 -0
  950. data/web/doc/api/core/files/lib/facets/core/string/to_const_rb.html +92 -0
  951. data/web/doc/api/core/files/lib/facets/core/string/to_date_rb.html +97 -0
  952. data/web/doc/api/core/files/lib/facets/core/string/to_proc_rb.html +92 -0
  953. data/web/doc/api/core/files/lib/facets/core/string/to_re_rb.html +92 -0
  954. data/web/doc/api/core/files/lib/facets/core/string/to_rx_rb.html +100 -0
  955. data/web/doc/api/core/files/lib/facets/core/string/to_time_rb.html +96 -0
  956. data/web/doc/api/core/files/lib/facets/core/string/unbracket_rb.html +96 -0
  957. data/web/doc/api/core/files/lib/facets/core/string/underscore_rb.html +92 -0
  958. data/web/doc/api/core/files/lib/facets/core/string/unix_crypt_rb.html +96 -0
  959. data/web/doc/api/core/files/lib/facets/core/string/unpack_rb.html +92 -0
  960. data/web/doc/api/core/files/lib/facets/core/string/unshift_rb.html +92 -0
  961. data/web/doc/api/core/files/lib/facets/core/string/upcase_rb.html +92 -0
  962. data/web/doc/api/core/files/lib/facets/core/string/uppercase_rb.html +100 -0
  963. data/web/doc/api/core/files/lib/facets/core/string/whitespace_rb.html +96 -0
  964. data/web/doc/api/core/files/lib/facets/core/string/word_filter_rb.html +92 -0
  965. data/web/doc/api/core/files/lib/facets/core/string/word_wrap_rb.html +92 -0
  966. data/web/doc/api/core/files/lib/facets/core/string/words_rb.html +92 -0
  967. data/web/doc/api/core/files/lib/facets/core/string_as_array_rb.html +109 -0
  968. data/web/doc/api/core/files/lib/facets/core/symbol/camelcase_rb.html +96 -0
  969. data/web/doc/api/core/files/lib/facets/core/symbol/camelize_rb.html +96 -0
  970. data/web/doc/api/core/files/lib/facets/core/symbol/capitalize_rb.html +96 -0
  971. data/web/doc/api/core/files/lib/facets/core/symbol/capitalized_rb.html +97 -0
  972. data/web/doc/api/core/files/lib/facets/core/symbol/downcase_rb.html +96 -0
  973. data/web/doc/api/core/files/lib/facets/core/symbol/not_rb.html +92 -0
  974. data/web/doc/api/core/files/lib/facets/core/symbol/pad_rb.html +92 -0
  975. data/web/doc/api/core/files/lib/facets/core/symbol/succ_rb.html +92 -0
  976. data/web/doc/api/core/files/lib/facets/core/symbol/to_const_rb.html +96 -0
  977. data/web/doc/api/core/files/lib/facets/core/symbol/to_proc_rb.html +92 -0
  978. data/web/doc/api/core/files/lib/facets/core/symbol/to_str_rb.html +92 -0
  979. data/web/doc/api/core/files/lib/facets/core/symbol/underscore_rb.html +96 -0
  980. data/web/doc/api/core/files/lib/facets/core/symbol/upcase_rb.html +96 -0
  981. data/web/doc/api/core/files/lib/facets/core/time/change_rb.html +92 -0
  982. data/web/doc/api/core/files/lib/facets/core/time/elapse_rb.html +92 -0
  983. data/web/doc/api/core/files/lib/facets/core/time/self/days_extrema_rb.html +114 -0
  984. data/web/doc/api/core/files/lib/facets/core/time/self/stamp_rb.html +100 -0
  985. data/web/doc/api/core/files/lib/facets/core/time/stamp_rb.html +92 -0
  986. data/web/doc/api/core/files/lib/facets/core/time/to_date_rb.html +96 -0
  987. data/web/doc/api/core/files/lib/facets/core/time/to_s_rb.html +96 -0
  988. data/web/doc/api/core/files/lib/facets/core/time/to_time_rb.html +92 -0
  989. data/web/doc/api/core/files/lib/facets/core/unboundmethod/name_rb.html +92 -0
  990. data/web/doc/api/core/fr_class_index.html +80 -0
  991. data/web/doc/api/core/fr_file_index.html +521 -0
  992. data/web/doc/api/core/fr_method_index.html +555 -0
  993. data/web/doc/api/core/index.html +26 -0
  994. data/web/doc/api/core/rdoc-style.css +175 -0
  995. data/web/doc/api/more/classes/Annotation.html +258 -0
  996. data/web/doc/api/more/classes/Array.html +362 -0
  997. data/web/doc/api/more/classes/Aspect.html +159 -0
  998. data/web/doc/api/more/classes/Aspects.html +240 -0
  999. data/web/doc/api/more/classes/Aspects/ClassMethods.html +254 -0
  1000. data/web/doc/api/more/classes/Association.html +289 -0
  1001. data/web/doc/api/more/classes/BBCode.html +531 -0
  1002. data/web/doc/api/more/classes/BasicObject.html +260 -0
  1003. data/web/doc/api/more/classes/BasicObject/Self.html +142 -0
  1004. data/web/doc/api/more/classes/BinaryReader.html +535 -0
  1005. data/web/doc/api/more/classes/BinaryReader/ByteOrder.html +225 -0
  1006. data/web/doc/api/more/classes/BuilderObject.html +248 -0
  1007. data/web/doc/api/more/classes/Class.html +201 -0
  1008. data/web/doc/api/more/classes/Client.html +1251 -0
  1009. data/web/doc/api/more/classes/Cloneable.html +133 -0
  1010. data/web/doc/api/more/classes/Console.html +105 -0
  1011. data/web/doc/api/more/classes/Console/ANSICode.html +488 -0
  1012. data/web/doc/api/more/classes/Console/Command.html +275 -0
  1013. data/web/doc/api/more/classes/Console/ProgressBar.html +640 -0
  1014. data/web/doc/api/more/classes/Coroutine.html +284 -0
  1015. data/web/doc/api/more/classes/Crypt.html +270 -0
  1016. data/web/doc/api/more/classes/DebugSocket.html +242 -0
  1017. data/web/doc/api/more/classes/Dictionary.html +974 -0
  1018. data/web/doc/api/more/classes/Downloader.html +515 -0
  1019. data/web/doc/api/more/classes/Downloader/Checksum.html +96 -0
  1020. data/web/doc/api/more/classes/Downloader/Mirror.html +134 -0
  1021. data/web/doc/api/more/classes/Elementor.html +202 -0
  1022. data/web/doc/api/more/classes/Enumerable.html +86 -0
  1023. data/web/doc/api/more/classes/EnumerablePass.html +217 -0
  1024. data/web/doc/api/more/classes/Expirable.html +197 -0
  1025. data/web/doc/api/more/classes/FalseClass.html +119 -0
  1026. data/web/doc/api/more/classes/FileList.html +971 -0
  1027. data/web/doc/api/more/classes/Float.html +140 -0
  1028. data/web/doc/api/more/classes/FloatString.html +413 -0
  1029. data/web/doc/api/more/classes/Functor.html +203 -0
  1030. data/web/doc/api/more/classes/HTMLBuilder.html +132 -0
  1031. data/web/doc/api/more/classes/HTMLHelper.html +189 -0
  1032. data/web/doc/api/more/classes/HTTP.html +154 -0
  1033. data/web/doc/api/more/classes/HTTP/BadResponseError.html +94 -0
  1034. data/web/doc/api/more/classes/HTTP/Error.html +96 -0
  1035. data/web/doc/api/more/classes/HTTP/Message.html +633 -0
  1036. data/web/doc/api/more/classes/HTTP/Message/Body.html +299 -0
  1037. data/web/doc/api/more/classes/HTTP/Message/Headers.html +641 -0
  1038. data/web/doc/api/more/classes/HTTP/Status.html +148 -0
  1039. data/web/doc/api/more/classes/HTTPAccess.html +115 -0
  1040. data/web/doc/api/more/classes/Hash.html +257 -0
  1041. data/web/doc/api/more/classes/HashBuilder.html +216 -0
  1042. data/web/doc/api/more/classes/Heap.html +535 -0
  1043. data/web/doc/api/more/classes/Heap/EmptyHeapException.html +92 -0
  1044. data/web/doc/api/more/classes/Heap/Max.html +133 -0
  1045. data/web/doc/api/more/classes/Heap/Min.html +133 -0
  1046. data/web/doc/api/more/classes/IORedirect.html +225 -0
  1047. data/web/doc/api/more/classes/Integer.html +298 -0
  1048. data/web/doc/api/more/classes/Interval.html +853 -0
  1049. data/web/doc/api/more/classes/InvalidNackError.html +117 -0
  1050. data/web/doc/api/more/classes/JSON.html +410 -0
  1051. data/web/doc/api/more/classes/JSON/Parser.html +374 -0
  1052. data/web/doc/api/more/classes/JSON/State.html +280 -0
  1053. data/web/doc/api/more/classes/Kernel.html +400 -0
  1054. data/web/doc/api/more/classes/LRUCache.html +461 -0
  1055. data/web/doc/api/more/classes/LRUCache/Item.html +114 -0
  1056. data/web/doc/api/more/classes/LRUCache/Sentinel.html +102 -0
  1057. data/web/doc/api/more/classes/Lazy.html +96 -0
  1058. data/web/doc/api/more/classes/Lazy/Future.html +100 -0
  1059. data/web/doc/api/more/classes/Lazy/Promise.html +114 -0
  1060. data/web/doc/api/more/classes/Lazy/PromiseSafe.html +99 -0
  1061. data/web/doc/api/more/classes/Lisp.html +846 -0
  1062. data/web/doc/api/more/classes/Lisp/DottedPair.html +289 -0
  1063. data/web/doc/api/more/classes/Lisp/Format.html +147 -0
  1064. data/web/doc/api/more/classes/Math.html +110 -0
  1065. data/web/doc/api/more/classes/Math/Constants.html +691 -0
  1066. data/web/doc/api/more/classes/Math/Constants/CGS.html +584 -0
  1067. data/web/doc/api/more/classes/Method.html +170 -0
  1068. data/web/doc/api/more/classes/Method/Probe.html +267 -0
  1069. data/web/doc/api/more/classes/Mock.html +276 -0
  1070. data/web/doc/api/more/classes/Module.html +691 -0
  1071. data/web/doc/api/more/classes/Multiton.html +256 -0
  1072. data/web/doc/api/more/classes/NackClass.html +245 -0
  1073. data/web/doc/api/more/classes/NilClass.html +238 -0
  1074. data/web/doc/api/more/classes/NullClass.html +202 -0
  1075. data/web/doc/api/more/classes/Numeric.html +1104 -0
  1076. data/web/doc/api/more/classes/ORMSupport.html +357 -0
  1077. data/web/doc/api/more/classes/Object.html +323 -0
  1078. data/web/doc/api/more/classes/OpenCascade.html +230 -0
  1079. data/web/doc/api/more/classes/OpenObject.html +552 -0
  1080. data/web/doc/api/more/classes/PQueue.html +471 -0
  1081. data/web/doc/api/more/classes/PathList.html +162 -0
  1082. data/web/doc/api/more/classes/PathList/Finder.html +137 -0
  1083. data/web/doc/api/more/classes/Pool.html +207 -0
  1084. data/web/doc/api/more/classes/Proc.html +140 -0
  1085. data/web/doc/api/more/classes/PromoteSelf.html +138 -0
  1086. data/web/doc/api/more/classes/Quaternion.html +1497 -0
  1087. data/web/doc/api/more/classes/REXMLBuilder.html +357 -0
  1088. data/web/doc/api/more/classes/REXMLBuilder/REXMLUtil.html +396 -0
  1089. data/web/doc/api/more/classes/Recorder.html +208 -0
  1090. data/web/doc/api/more/classes/Reference.html +201 -0
  1091. data/web/doc/api/more/classes/RubyOneLiners.html +139 -0
  1092. data/web/doc/api/more/classes/RubyTals.html +316 -0
  1093. data/web/doc/api/more/classes/SSLSocketWrap.html +410 -0
  1094. data/web/doc/api/more/classes/Semaphore.html +264 -0
  1095. data/web/doc/api/more/classes/SimpleStringIO.html +139 -0
  1096. data/web/doc/api/more/classes/Snapshot.html +191 -0
  1097. data/web/doc/api/more/classes/StateMachine.html +248 -0
  1098. data/web/doc/api/more/classes/StateParser.html +276 -0
  1099. data/web/doc/api/more/classes/StateParser/Constants.html +109 -0
  1100. data/web/doc/api/more/classes/StateParser/Marker.html +269 -0
  1101. data/web/doc/api/more/classes/StateParser/State.html +448 -0
  1102. data/web/doc/api/more/classes/StaticHash.html +144 -0
  1103. data/web/doc/api/more/classes/String.html +278 -0
  1104. data/web/doc/api/more/classes/StringIO.html +123 -0
  1105. data/web/doc/api/more/classes/Struct.html +134 -0
  1106. data/web/doc/api/more/classes/Symbol.html +116 -0
  1107. data/web/doc/api/more/classes/SyncArray.html +131 -0
  1108. data/web/doc/api/more/classes/SyncHash.html +135 -0
  1109. data/web/doc/api/more/classes/SyncHash/Delegator.html +213 -0
  1110. data/web/doc/api/more/classes/SyncHash/Inheritor.html +213 -0
  1111. data/web/doc/api/more/classes/System.html +1055 -0
  1112. data/web/doc/api/more/classes/TSort.html +123 -0
  1113. data/web/doc/api/more/classes/TagIterator.html +706 -0
  1114. data/web/doc/api/more/classes/Task.html +237 -0
  1115. data/web/doc/api/more/classes/Task/Graph.html +165 -0
  1116. data/web/doc/api/more/classes/Taskable.html +300 -0
  1117. data/web/doc/api/more/classes/Time.html +746 -0
  1118. data/web/doc/api/more/classes/Timer.html +471 -0
  1119. data/web/doc/api/more/classes/Timer/Dummy.html +141 -0
  1120. data/web/doc/api/more/classes/TracePoint.html +453 -0
  1121. data/web/doc/api/more/classes/TrueClass.html +118 -0
  1122. data/web/doc/api/more/classes/Tuple.html +861 -0
  1123. data/web/doc/api/more/classes/URI.html +107 -0
  1124. data/web/doc/api/more/classes/Uninheritable.html +130 -0
  1125. data/web/doc/api/more/classes/Units.html +191 -0
  1126. data/web/doc/api/more/classes/Units/Config.html +120 -0
  1127. data/web/doc/api/more/classes/Units/Converter.html +808 -0
  1128. data/web/doc/api/more/classes/Units/Converter/ExchangeRate.html +155 -0
  1129. data/web/doc/api/more/classes/Units/Converter/ExchangeRate/CachedXMethods.html +143 -0
  1130. data/web/doc/api/more/classes/Units/Converter/ExchangeRate/XMethods.html +197 -0
  1131. data/web/doc/api/more/classes/Units/Unit.html +434 -0
  1132. data/web/doc/api/more/classes/Units/Value.html +331 -0
  1133. data/web/doc/api/more/classes/ValueHolder.html +167 -0
  1134. data/web/doc/api/more/classes/WebAgent.html +103 -0
  1135. data/web/doc/api/more/classes/WebAgent/Cookie.html +513 -0
  1136. data/web/doc/api/more/classes/WebAgent/CookieManager.html +515 -0
  1137. data/web/doc/api/more/classes/WebAgent/CookieManager/Error.html +96 -0
  1138. data/web/doc/api/more/classes/WebAgent/CookieManager/ErrorOverrideOK.html +94 -0
  1139. data/web/doc/api/more/classes/WebAgent/CookieManager/NoDotError.html +94 -0
  1140. data/web/doc/api/more/classes/WebAgent/CookieManager/SpecialError.html +94 -0
  1141. data/web/doc/api/more/classes/WebAgent/CookieUtils.html +171 -0
  1142. data/web/doc/api/more/classes/XMLBuilder.html +132 -0
  1143. data/web/doc/api/more/classes/XMLHelper.html +428 -0
  1144. data/web/doc/api/more/classes/XOXO.html +252 -0
  1145. data/web/doc/api/more/classes/YAMLStruct.html +166 -0
  1146. data/web/doc/api/more/created.rid +1 -0
  1147. data/web/doc/api/more/files/AUTHORS.html +206 -0
  1148. data/web/doc/api/more/files/COPYING.html +517 -0
  1149. data/web/doc/api/more/files/README.html +389 -0
  1150. data/web/doc/api/more/files/WARNING.html +151 -0
  1151. data/web/doc/api/more/files/lib/facets/more/annattr_rb.html +115 -0
  1152. data/web/doc/api/more/files/lib/facets/more/annotation_rb.html +118 -0
  1153. data/web/doc/api/more/files/lib/facets/more/ansicode_rb.html +128 -0
  1154. data/web/doc/api/more/files/lib/facets/more/aspects_rb.html +115 -0
  1155. data/web/doc/api/more/files/lib/facets/more/association_rb.html +111 -0
  1156. data/web/doc/api/more/files/lib/facets/more/basicobject_rb.html +129 -0
  1157. data/web/doc/api/more/files/lib/facets/more/bbcode_rb.html +111 -0
  1158. data/web/doc/api/more/files/lib/facets/more/binaryreader_rb.html +111 -0
  1159. data/web/doc/api/more/files/lib/facets/more/bitmask_rb.html +111 -0
  1160. data/web/doc/api/more/files/lib/facets/more/blankslate_rb.html +113 -0
  1161. data/web/doc/api/more/files/lib/facets/more/builderobject_rb.html +115 -0
  1162. data/web/doc/api/more/files/lib/facets/more/bytes_rb.html +131 -0
  1163. data/web/doc/api/more/files/lib/facets/more/classinherit_rb.html +111 -0
  1164. data/web/doc/api/more/files/lib/facets/more/classmethods_rb.html +121 -0
  1165. data/web/doc/api/more/files/lib/facets/more/cloneable_rb.html +132 -0
  1166. data/web/doc/api/more/files/lib/facets/more/consoleapp_rb.html +131 -0
  1167. data/web/doc/api/more/files/lib/facets/more/cookie_rb.html +133 -0
  1168. data/web/doc/api/more/files/lib/facets/more/coroutine_rb.html +111 -0
  1169. data/web/doc/api/more/files/lib/facets/more/crypt_rb.html +146 -0
  1170. data/web/doc/api/more/files/lib/facets/more/dictionary_rb.html +123 -0
  1171. data/web/doc/api/more/files/lib/facets/more/downloader_rb.html +124 -0
  1172. data/web/doc/api/more/files/lib/facets/more/elementor_rb.html +115 -0
  1173. data/web/doc/api/more/files/lib/facets/more/enumerablepass_rb.html +115 -0
  1174. data/web/doc/api/more/files/lib/facets/more/expirable_rb.html +111 -0
  1175. data/web/doc/api/more/files/lib/facets/more/filelist_rb.html +128 -0
  1176. data/web/doc/api/more/files/lib/facets/more/floatstring_rb.html +115 -0
  1177. data/web/doc/api/more/files/lib/facets/more/functor_rb.html +115 -0
  1178. data/web/doc/api/more/files/lib/facets/more/hashbuilder_rb.html +115 -0
  1179. data/web/doc/api/more/files/lib/facets/more/heap_rb.html +131 -0
  1180. data/web/doc/api/more/files/lib/facets/more/htmlbuilder_rb.html +116 -0
  1181. data/web/doc/api/more/files/lib/facets/more/htmlhelper_rb.html +119 -0
  1182. data/web/doc/api/more/files/lib/facets/more/http_rb.html +116 -0
  1183. data/web/doc/api/more/files/lib/facets/more/httpaccess_rb.html +137 -0
  1184. data/web/doc/api/more/files/lib/facets/more/inheritor_rb.html +115 -0
  1185. data/web/doc/api/more/files/lib/facets/more/interval_rb.html +120 -0
  1186. data/web/doc/api/more/files/lib/facets/more/ioredirect_rb.html +116 -0
  1187. data/web/doc/api/more/files/lib/facets/more/json_rb.html +141 -0
  1188. data/web/doc/api/more/files/lib/facets/more/lazy_rb.html +111 -0
  1189. data/web/doc/api/more/files/lib/facets/more/lisp_format_rb.html +129 -0
  1190. data/web/doc/api/more/files/lib/facets/more/lisp_rb.html +119 -0
  1191. data/web/doc/api/more/files/lib/facets/more/lrucache_rb.html +111 -0
  1192. data/web/doc/api/more/files/lib/facets/more/mathconstants_rb.html +121 -0
  1193. data/web/doc/api/more/files/lib/facets/more/methodprobe_rb.html +111 -0
  1194. data/web/doc/api/more/files/lib/facets/more/mock_rb.html +208 -0
  1195. data/web/doc/api/more/files/lib/facets/more/multipliers_rb.html +115 -0
  1196. data/web/doc/api/more/files/lib/facets/more/multiton_rb.html +114 -0
  1197. data/web/doc/api/more/files/lib/facets/more/nackclass_rb.html +151 -0
  1198. data/web/doc/api/more/files/lib/facets/more/nilcomparable_rb.html +118 -0
  1199. data/web/doc/api/more/files/lib/facets/more/nullclass_rb.html +111 -0
  1200. data/web/doc/api/more/files/lib/facets/more/one_rb.html +158 -0
  1201. data/web/doc/api/more/files/lib/facets/more/opencascade_rb.html +129 -0
  1202. data/web/doc/api/more/files/lib/facets/more/openobject_rb.html +120 -0
  1203. data/web/doc/api/more/files/lib/facets/more/orderedhash_rb.html +113 -0
  1204. data/web/doc/api/more/files/lib/facets/more/ormsupport_rb.html +125 -0
  1205. data/web/doc/api/more/files/lib/facets/more/overload_rb.html +111 -0
  1206. data/web/doc/api/more/files/lib/facets/more/paramix_rb.html +118 -0
  1207. data/web/doc/api/more/files/lib/facets/more/pathlist_rb.html +111 -0
  1208. data/web/doc/api/more/files/lib/facets/more/pool_rb.html +120 -0
  1209. data/web/doc/api/more/files/lib/facets/more/pqueue_rb.html +122 -0
  1210. data/web/doc/api/more/files/lib/facets/more/preinitialize_rb.html +115 -0
  1211. data/web/doc/api/more/files/lib/facets/more/progressbar_rb.html +111 -0
  1212. data/web/doc/api/more/files/lib/facets/more/promoteself_rb.html +111 -0
  1213. data/web/doc/api/more/files/lib/facets/more/quaternion_rb.html +150 -0
  1214. data/web/doc/api/more/files/lib/facets/more/recorder_rb.html +115 -0
  1215. data/web/doc/api/more/files/lib/facets/more/reference_rb.html +115 -0
  1216. data/web/doc/api/more/files/lib/facets/more/rexmlbuilder_rb.html +116 -0
  1217. data/web/doc/api/more/files/lib/facets/more/rtals_rb.html +115 -0
  1218. data/web/doc/api/more/files/lib/facets/more/semaphore_rb.html +111 -0
  1219. data/web/doc/api/more/files/lib/facets/more/snapshot_rb.html +121 -0
  1220. data/web/doc/api/more/files/lib/facets/more/stateparser_rb.html +115 -0
  1221. data/web/doc/api/more/files/lib/facets/more/statichash_rb.html +133 -0
  1222. data/web/doc/api/more/files/lib/facets/more/syncarray_rb.html +115 -0
  1223. data/web/doc/api/more/files/lib/facets/more/synchash_rb.html +115 -0
  1224. data/web/doc/api/more/files/lib/facets/more/system_rb.html +123 -0
  1225. data/web/doc/api/more/files/lib/facets/more/tagiterator_rb.html +111 -0
  1226. data/web/doc/api/more/files/lib/facets/more/taskable_rb.html +118 -0
  1227. data/web/doc/api/more/files/lib/facets/more/timer_rb.html +127 -0
  1228. data/web/doc/api/more/files/lib/facets/more/times_rb.html +127 -0
  1229. data/web/doc/api/more/files/lib/facets/more/tracepoint_rb.html +131 -0
  1230. data/web/doc/api/more/files/lib/facets/more/tuple_rb.html +122 -0
  1231. data/web/doc/api/more/files/lib/facets/more/typecast_rb.html +124 -0
  1232. data/web/doc/api/more/files/lib/facets/more/uninheritable_rb.html +111 -0
  1233. data/web/doc/api/more/files/lib/facets/more/units_rb.html +118 -0
  1234. data/web/doc/api/more/files/lib/facets/more/xmlbuilder_rb.html +116 -0
  1235. data/web/doc/api/more/files/lib/facets/more/xmlhelper_rb.html +111 -0
  1236. data/web/doc/api/more/files/lib/facets/more/xoxo_rb.html +125 -0
  1237. data/web/doc/api/more/files/lib/facets/more/yamlstruct_rb.html +123 -0
  1238. data/web/doc/api/more/fr_class_index.html +197 -0
  1239. data/web/doc/api/more/fr_file_index.html +136 -0
  1240. data/web/doc/api/more/fr_method_index.html +1290 -0
  1241. data/web/doc/api/more/index.html +26 -0
  1242. data/web/doc/api/more/rdoc-style.css +175 -0
  1243. data/web/documentation.html +174 -0
  1244. data/web/favicon.ico +0 -0
  1245. data/web/images/abc.png +0 -0
  1246. data/web/images/abc1.png +0 -0
  1247. data/web/images/apple_core.jpg +0 -0
  1248. data/web/images/apples3.jpg +0 -0
  1249. data/web/images/best_jupiter_cass.jpg +0 -0
  1250. data/web/images/core.jpg +0 -0
  1251. data/web/images/gray.jpg +0 -0
  1252. data/web/images/ruby-lg.png +0 -0
  1253. data/web/images/ruby.gif +0 -0
  1254. data/web/images/super-friends-volume-two-20050606010933166-001.jpg +0 -0
  1255. data/web/images/three_apples.jpg +0 -0
  1256. data/web/images/yellow_fade.jpg +0 -0
  1257. data/web/images/yellow_fade2.jpg +0 -0
  1258. data/web/index.html +224 -0
  1259. data/web/style.css +153 -0
  1260. metadata +1433 -457
data/web/style.css ADDED
@@ -0,0 +1,153 @@
1
+
2
+ body {
3
+ font-family: sans-serif; margin: 0px;
4
+ //background: url(images/atom_logo.png) 40px -80px no-repeat white;
5
+ }
6
+
7
+ p {
8
+ font-size: .8em; margin: 0px 10px 15px; line-height: 1.5em;
9
+ color: #333333; text-align: justify;
10
+ }
11
+
12
+ a {
13
+ color: #ffcccc; font-family: sans-serif; font-weight: bold;
14
+ text-decoration: underline; font-size: 8pt;
15
+ }
16
+
17
+ a.big {
18
+ color: gray; font-family: sans-serif; font-weight: bold;
19
+ text-decoration: none; font-size: 12pt;
20
+ }
21
+
22
+ img {
23
+ border: none;
24
+ }
25
+
26
+ div
27
+ { margin: 0; padding: 0 }
28
+
29
+ table { margin: 0; padding: 0 }
30
+ tr { margin: 0; padding: 0 }
31
+ td { margin: 0; padding: 0 }
32
+
33
+ pre { background: #f0FFf0;
34
+ font-size: 8pt;
35
+ padding-top: 10px;
36
+ }
37
+
38
+ b.r { color: pink; }
39
+ b.g { color: yellow; }
40
+ b.b { color: skyblue; }
41
+
42
+ span.red { color: #ff0044; }
43
+
44
+
45
+ /* Header */
46
+
47
+ div#bar1 { float: top; width: 100%; height: 100px;
48
+ padding-top: 0; padding-bottom: 30px;
49
+ //background: url(images/ruby-lg.png) no-repeat top center; }
50
+
51
+ div#head { margin: 0 auto; width: 800px; color: #990055; color: black;
52
+ text-align: center;
53
+ font-size: 54pt; font-weight: bold; line-height: 52pt;
54
+ letter-spacing: -4px; }
55
+
56
+ div#gem { position: absolute; top: 0; left: 20%; }
57
+
58
+ /* Menu Bar */
59
+
60
+ div#bar2 {
61
+ float: top; width: 100%; background: #990055;
62
+ padding: 5px 0px;
63
+ border-bottom: 2px solid #553333;
64
+ border-top: 2px solid #773333;
65
+ z-index: 2;
66
+ }
67
+
68
+ div#menu {
69
+ margin: 0 auto; width: 800px;
70
+ font-size: 1em;
71
+ background: transparent;
72
+ text-align: center;
73
+ }
74
+
75
+ /* Main */
76
+
77
+ div#body { margin: 0 auto; width: 780px; background: transparent; }
78
+
79
+ div#side { float: left; margin-top: -130px; margin-right: 20px;
80
+ text-align: center; width: 195px; height: 2700px; }
81
+
82
+ div#main { padding-left: 15px; text-align: justify; font-size: 1em;
83
+ padding-top: 10px; vertical-align: bottom; width: 100%;
84
+ }
85
+
86
+ img#logo { z-index: 0; }
87
+
88
+ div#sell { margin: 15px auto; width: 450px; text-align: center;
89
+ background: #ffEEEE; padding: 10px 15px 10px 15px; font-size: 16pt;
90
+ font-family:sans-serif;
91
+ -moz-border-radius-topleft: 1em; border-topleft-radius: 1em;
92
+ -moz-border-radius-topright: 1em; border-topright-radius: 1em;
93
+ -moz-border-radius-bottomleft: 1em; border-bottomleft-radius: 1em;
94
+ -moz-border-radius-bottomright: 1em; border-bottomright-radius: 1em;
95
+ }
96
+
97
+ td.column { vertical-align: top; width: 50%; padding: 5px;
98
+ //border-left: 1px solid #eeeeee;
99
+ //border-right: 1px solid #eeeeee; }
100
+
101
+ div.sect { font-size: 1.2em; font-weight: bold; line-height: 2em;
102
+ background: url(images/yellow_fade2.jpg) repeat-x;
103
+ text-align: center;
104
+ border: 1px solid gray;
105
+ -moz-border-radius-topleft: 1em; border-topleft-radius: 1em;
106
+ -moz-border-radius-topright: 1em; border-topright-radius: 1em;
107
+ -moz-border-radius-bottomleft: 1em; border-bottomleft-radius: 1em;
108
+ -moz-border-radius-bottomright: 1em; border-bottomright-radius: 1em;
109
+ margin-bottom: 15px;
110
+ }
111
+
112
+ div.sect img { width: 30px; }
113
+
114
+ blockquote { margin: 5px; margin-left: 5px; font-weight: bold;
115
+ font-style: italic; font-size: .8em; color: #111111; }
116
+
117
+ div.bq { margin: 10px; margin-left: 25px; padding: 10px; width: 320px;
118
+ font-style: italic; font-size: .8em; color: black; }
119
+
120
+ div.emblem { margin: 0 auto; border: 1px solid black; margin-top: 20px; background: gray;
121
+ font-size: 7pt; width: 125px; height: 20px; line-height: 20px; }
122
+
123
+ iframe#list { width: 250px; height: 400px; padding: 5px; border: solid 1pt silver;
124
+ margin: 20px 0; margin-bottom: 35px;
125
+ -moz-border-radius-topleft: 1em; border-topleft-radius: 1em;
126
+ -moz-border-radius-topright: 1em; border-topright-radius: 1em;
127
+ -moz-border-radius-bottomleft: 1em; border-bottomleft-radius: 1em;
128
+ -moz-border-radius-bottomright: 1em; border-bottomright-radius: 1em; }
129
+
130
+ span.spot { font-weight: normal; color: orange; }
131
+
132
+ div.spotlight { padding-bottom: 10px; padding-top: 5px;
133
+ margin: 5px;
134
+ //background: #FFFFEE;
135
+ //border: 1px solid gray;
136
+ //-moz-border-radius-topleft: 1em; border-topleft-radius: 1em;
137
+ //-moz-border-radius-topright: 1em; border-topright-radius: 1em;
138
+ //-moz-border-radius-bottomleft: 1em; border-bottomleft-radius: 1em;
139
+ //-moz-border-radius-bottomright: 1em; border-bottomright-radius: 1em; }
140
+
141
+ div#donate {
142
+ margin: 0 auto;
143
+ padding: 5px;
144
+ font-size: 8pt; font-weight: bold;
145
+ width: 20%;
146
+ text-align: center;
147
+ background: #EEFFFF;
148
+ border: 1px solid gray;
149
+ -moz-border-radius-topleft: 1em; border-topleft-radius: 1em;
150
+ -moz-border-radius-topright: 1em; border-topright-radius: 1em;
151
+ -moz-border-radius-bottomleft: 1em; border-bottomleft-radius: 1em;
152
+ -moz-border-radius-bottomright: 1em; border-bottomright-radius: 1em; }
153
+ }
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.11
3
3
  specification_version: 1
4
4
  name: facets
5
5
  version: !ruby/object:Gem::Version
6
- version: 1.4.0
7
- date: 2006-06-05 00:00:00 -04:00
6
+ version: 1.4.1
7
+ date: 2006-06-06 00:00:00 -04:00
8
8
  summary: Exceptional collection of extensions and additions.
9
9
  require_paths:
10
10
  - lib
@@ -28,432 +28,923 @@ cert_chain:
28
28
  authors:
29
29
  - Thomas Sawyer
30
30
  files:
31
- - test
32
- - lib
33
- - demo
31
+ - note
32
+ - ProjectInfo
34
33
  - data
34
+ - web
35
+ - demo
36
+ - Reapfile
37
+ - lib
38
+ - forge
39
+ - test
40
+ - AUTHORS
35
41
  - COPYING
36
42
  - README
37
- - setup.rb
38
43
  - WARNING
39
- - AUTHORS
40
- - test/lib
41
- - test/FIXTURE
42
- - test/lib/facets
43
- - test/lib/facets/more
44
- - test/lib/facets/core/array
45
- - test/lib/facets/core/binding
46
- - test/lib/facets/core/class
47
- - test/lib/facets/core/comparable
48
- - test/lib/facets/core/continuation
49
- - test/lib/facets/core/date
50
- - test/lib/facets/core/dir
51
- - test/lib/facets/core/enumerable
52
- - test/lib/facets/core/file
53
- - test/lib/facets/core/float
54
- - test/lib/facets/core/hash
55
- - test/lib/facets/core/integer
56
- - test/lib/facets/core/kernel
57
- - test/lib/facets/core/matchdata
58
- - test/lib/facets/core/module
59
- - test/lib/facets/core/nilclass
60
- - test/lib/facets/core/numeric
61
- - test/lib/facets/core/ostruct
62
- - test/lib/facets/core/proc
63
- - test/lib/facets/core/range
64
- - test/lib/facets/core/regexp
65
- - test/lib/facets/core/string
66
- - test/lib/facets/core/symbol
67
- - test/lib/facets/core/time
68
- - test/lib/facets/core/array/test_pull.rb
69
- - test/lib/facets/core/array/test_merge.rb
70
- - test/lib/facets/core/array/test_select.rb
71
- - test/lib/facets/core/array/test_rand_index.rb
72
- - test/lib/facets/core/array/test_rand_subset.rb
73
- - test/lib/facets/core/array/test_delete_unless.rb
74
- - test/lib/facets/core/array/test_delete_values.rb
75
- - test/lib/facets/core/array/test_last_index.rb
76
- - test/lib/facets/core/array/test_thru.rb
77
- - test/lib/facets/core/array/test_at_rand.rb
78
- - test/lib/facets/core/array/test_first.rb
79
- - test/lib/facets/core/array/test_range.rb
80
- - test/lib/facets/core/array/test_to_b.rb
81
- - test/lib/facets/core/array/test_to_h.rb
82
- - test/lib/facets/core/array/test_mid.rb
83
- - test/lib/facets/core/array/test_delete_values_at.rb
84
- - test/lib/facets/core/array/test_head.rb
85
- - test/lib/facets/core/array/test_pos.rb
86
- - test/lib/facets/core/array/test_rotate.rb
87
- - test/lib/facets/core/array/test_shuffle.rb
88
- - test/lib/facets/core/array/test_op_store.rb
89
- - test/lib/facets/core/array/test_op_fetch.rb
90
- - test/lib/facets/core/array/test_middle.rb
91
- - test/lib/facets/core/array/test_pick.rb
92
- - test/lib/facets/core/array/test_to_hash.rb
93
- - test/lib/facets/core/array/test_pot.rb
94
- - test/lib/facets/core/binding/test_call_stack.rb
95
- - test/lib/facets/core/binding/test_self.rb
96
- - test/lib/facets/core/binding/test___LINE__.rb
97
- - test/lib/facets/core/binding/test_eval.rb
98
- - test/lib/facets/core/binding/test_method_name.rb
99
- - test/lib/facets/core/binding/test_called.rb
100
- - test/lib/facets/core/binding/test_caller.rb
101
- - test/lib/facets/core/binding/test_defined.rb
102
- - test/lib/facets/core/binding/test_op_store.rb
103
- - test/lib/facets/core/binding/test_op_fetch.rb
104
- - test/lib/facets/core/binding/test_local_variables.rb
105
- - test/lib/facets/core/binding/self
106
- - test/lib/facets/core/binding/self/test_of_caller.rb
107
- - test/lib/facets/core/class/test_descendents.rb
108
- - test/lib/facets/core/class/test_remove_descendents.rb
109
- - test/lib/facets/core/class/test_unix_path.rb
110
- - test/lib/facets/core/class/test_method_name.rb
111
- - test/lib/facets/core/class/test_cattr.rb
112
- - test/lib/facets/core/comparable/test_cmp.rb
113
- - test/lib/facets/core/comparable/test_at_least.rb
114
- - test/lib/facets/core/comparable/test_clip.rb
115
- - test/lib/facets/core/continuation/self
116
- - test/lib/facets/core/continuation/self/test_create.rb
117
- - test/lib/facets/core/date/test_to_date.rb
118
- - test/lib/facets/core/date/test_days_in_month.rb
119
- - test/lib/facets/core/date/test_to_s.rb
120
- - test/lib/facets/core/date/test_stamp.rb
121
- - test/lib/facets/core/date/test_to_time.rb
122
- - test/lib/facets/core/date/test_days_of_month.rb
123
- - test/lib/facets/core/dir/self
124
- - test/lib/facets/core/dir/self/test_ancestor.rb
125
- - test/lib/facets/core/dir/self/test_ascend.rb
126
- - test/lib/facets/core/enumerable/test_find_collisions.rb
127
- - test/lib/facets/core/enumerable/test_each_unique_pair.rb
128
- - test/lib/facets/core/enumerable/test_ew.rb
129
- - test/lib/facets/core/enumerable/test_graph.rb
130
- - test/lib/facets/core/enumerable/test_filter_collect.rb
131
- - test/lib/facets/core/enumerable/test_ideal_entropy.rb
132
- - test/lib/facets/core/enumerable/test_partition_by.rb
133
- - test/lib/facets/core/enumerable/test_probability.rb
134
- - test/lib/facets/core/enumerable/test_collect_with_index.rb
135
- - test/lib/facets/core/enumerable/test_to_h.rb
136
- - test/lib/facets/core/enumerable/test_each_pair.rb
137
- - test/lib/facets/core/enumerable/test_every.rb
138
- - test/lib/facets/core/enumerable/test_compact_collect.rb
139
- - test/lib/facets/core/enumerable/test_one.rb
140
- - test/lib/facets/core/enumerable/test_none.rb
141
- - test/lib/facets/core/enumerable/test_op_pow.rb
142
- - test/lib/facets/core/enumerable/test_frequency.rb
143
- - test/lib/facets/core/enumerable/test_permute.rb
144
- - test/lib/facets/core/enumerable/test_occur.rb
145
- - test/lib/facets/core/enumerable/test_commonality.rb
146
- - test/lib/facets/core/enumerable/test_each_combination.rb
147
- - test/lib/facets/core/enumerable/test_each_slice.rb
148
- - test/lib/facets/core/enumerable/test_entropy.rb
149
- - test/lib/facets/core/enumerable/test_uniq_by.rb
150
- - test/lib/facets/core/enumerable/test_cross.rb
151
- - test/lib/facets/core/enumerable/test_count.rb
152
- - test/lib/facets/core/enumerable/self
153
- - test/lib/facets/core/enumerable/self/test_combinations.rb
154
- - test/lib/facets/core/enumerable/self/test_cross.rb
155
- - test/lib/facets/core/file/self
156
- - test/lib/facets/core/file/self/test_open_as_string.rb
157
- - test/lib/facets/core/file/self/test_read_list.rb
158
- - test/lib/facets/core/file/self/test_sanitize.rb
159
- - test/lib/facets/core/file/self/test_split_all.rb
160
- - test/lib/facets/core/file/self/test_create.rb
161
- - test/lib/facets/core/float/test_round_at.rb
162
- - test/lib/facets/core/float/test_round_to.rb
163
- - test/lib/facets/core/hash/test_collate.rb
164
- - test/lib/facets/core/hash/test_assert_has_keys.rb
165
- - test/lib/facets/core/hash/test_each_with_key.rb
166
- - test/lib/facets/core/hash/test_at.rb
167
- - test/lib/facets/core/hash/test_each.rb
168
- - test/lib/facets/core/hash/test_each_with_index.rb
169
- - test/lib/facets/core/hash/test_graph.rb
170
- - test/lib/facets/core/hash/test_to_ostruct.rb
171
- - test/lib/facets/core/hash/test_update_values.rb
172
- - test/lib/facets/core/hash/test_inverse.rb
173
- - test/lib/facets/core/hash/test_rand_value.rb
174
- - test/lib/facets/core/hash/test_assert_has_only_keys.rb
175
- - test/lib/facets/core/hash/test_keys_to_sym.rb
176
- - test/lib/facets/core/hash/test_has_only_keys.rb
177
- - test/lib/facets/core/hash/test_replace_each.rb
178
- - test/lib/facets/core/hash/test_swap.rb
179
- - test/lib/facets/core/hash/test_rand_key.rb
180
- - test/lib/facets/core/hash/test_to_h.rb
181
- - test/lib/facets/core/hash/test_slice.rb
182
- - test/lib/facets/core/hash/test_traverse.rb
183
- - test/lib/facets/core/hash/test_shuffle.rb
184
- - test/lib/facets/core/hash/test_alias.rb
185
- - test/lib/facets/core/hash/test_op_fetch.rb
186
- - test/lib/facets/core/hash/test_has_keys.rb
187
- - test/lib/facets/core/hash/test_to_ostruct_recurse.rb
188
- - test/lib/facets/core/hash/test_swapkey.rb
189
- - test/lib/facets/core/hash/test_keys_to_s.rb
190
- - test/lib/facets/core/hash/test_weave.rb
191
- - test/lib/facets/core/hash/test_op_lshift.rb
192
- - test/lib/facets/core/hash/test_update_keys.rb
193
- - test/lib/facets/core/hash/test_rand_pair.rb
194
- - test/lib/facets/core/hash/test_update_each.rb
195
- - test/lib/facets/core/hash/self
196
- - test/lib/facets/core/hash/self/test_zipnew.rb
197
- - test/lib/facets/core/integer/test_multiple.rb
198
- - test/lib/facets/core/integer/test_times_collect.rb
199
- - test/lib/facets/core/integer/test_factorial.rb
200
- - test/lib/facets/core/integer/test_ordinal.rb
201
- - test/lib/facets/core/kernel/test_call_stack.rb
202
- - test/lib/facets/core/kernel/test_get_by_id.rb
203
- - test/lib/facets/core/kernel/test_constant.rb
204
- - test/lib/facets/core/kernel/test_copy.rb
205
- - test/lib/facets/core/kernel/test_demo.rb
206
- - test/lib/facets/core/kernel/test_resc.rb
207
- - test/lib/facets/core/kernel/test_set_with.rb
208
- - test/lib/facets/core/kernel/test_require_all.rb
209
- - test/lib/facets/core/kernel/test_as.rb
210
- - test/lib/facets/core/kernel/test_fn.rb
211
- - test/lib/facets/core/kernel/test_in.rb
212
- - test/lib/facets/core/kernel/test_to_bool.rb
213
- - test/lib/facets/core/kernel/test_require_esc.rb
214
- - test/lib/facets/core/kernel/test_singleton.rb
215
- - test/lib/facets/core/kernel/test_methods.rb
216
- - test/lib/facets/core/kernel/test_assign_from.rb
217
- - test/lib/facets/core/kernel/test___class__.rb
218
- - test/lib/facets/core/kernel/test_send_as.rb
219
- - test/lib/facets/core/kernel/test_this.rb
220
- - test/lib/facets/core/kernel/test_bug.rb
221
- - test/lib/facets/core/kernel/test_generate_method_name.rb
222
- - test/lib/facets/core/kernel/test_to_b.rb
223
- - test/lib/facets/core/kernel/test_supermethod.rb
224
- - test/lib/facets/core/kernel/test_maybe.rb
225
- - test/lib/facets/core/kernel/test_object_class.rb
226
- - test/lib/facets/core/kernel/test_new.rb
227
- - test/lib/facets/core/kernel/test_with_accessor.rb
228
- - test/lib/facets/core/kernel/test_returning.rb
229
- - test/lib/facets/core/kernel/test_here.rb
230
- - test/lib/facets/core/kernel/test_called.rb
231
- - test/lib/facets/core/kernel/test_metaclass.rb
232
- - test/lib/facets/core/kernel/test_assign_with.rb
233
- - test/lib/facets/core/kernel/test_val.rb
234
- - test/lib/facets/core/kernel/test_uri.rb
235
- - test/lib/facets/core/kernel/test_set_from.rb
236
- - test/lib/facets/core/kernel/test_object_hexid.rb
237
- - test/lib/facets/core/kernel/test_method.rb
238
- - test/lib/facets/core/kernel/test_deep_copy.rb
239
- - test/lib/facets/core/kernel/test_superior.rb
240
- - test/lib/facets/core/kernel/test_bool.rb
241
- - test/lib/facets/core/kernel/test_require_facet.rb
242
- - test/lib/facets/core/kernel/test_silently.rb
243
- - test/lib/facets/core/kernel/test_methodname.rb
244
- - test/lib/facets/core/matchdata/test_matchtree.rb
245
- - test/lib/facets/core/matchdata/test_match.rb
246
- - test/lib/facets/core/module/test_redefine_method.rb
247
- - test/lib/facets/core/module/test_redirect_method.rb
248
- - test/lib/facets/core/module/test_initializer.rb
249
- - test/lib/facets/core/module/test_modspace.rb
250
- - test/lib/facets/core/module/test_instance_methods.rb
251
- - test/lib/facets/core/module/test_integrate.rb
252
- - test/lib/facets/core/module/test_basename.rb
253
- - test/lib/facets/core/module/test_generate_instance_method_name.rb
254
- - test/lib/facets/core/module/test_redirect.rb
255
- - test/lib/facets/core/module/test_shadow_method.rb
256
- - test/lib/facets/core/module/test_alias_module_function.rb
257
- - test/lib/facets/core/module/test_namespace.rb
258
- - test/lib/facets/core/module/test_abstract.rb
259
- - test/lib/facets/core/module/test_this.rb
260
- - test/lib/facets/core/module/test_nesting.rb
261
- - test/lib/facets/core/module/test_wrap_method.rb
262
- - test/lib/facets/core/module/test_ancestor.rb
263
- - test/lib/facets/core/module/test_include_as.rb
264
- - test/lib/facets/core/module/test_rename_method.rb
265
- - test/lib/facets/core/module/test_rename.rb
266
- - test/lib/facets/core/module/test_dirname.rb
267
- - test/lib/facets/core/module/test_remove.rb
268
- - test/lib/facets/core/module/test_sort_on.rb
269
- - test/lib/facets/core/module/test_nodef.rb
270
- - test/lib/facets/core/module/test_equate_on.rb
271
- - test/lib/facets/core/module/test_redef.rb
272
- - test/lib/facets/core/module/test_clone_using.rb
273
- - test/lib/facets/core/module/test_by_name.rb
274
- - test/lib/facets/core/module/test_memoize.rb
275
- - test/lib/facets/core/module/test_wrap.rb
276
- - test/lib/facets/core/module/test_revisal.rb
277
- - test/lib/facets/core/module/test_on_included.rb
278
- - test/lib/facets/core/module/test_inherit.rb
279
- - test/lib/facets/core/nilclass/test_size.rb
280
- - test/lib/facets/core/nilclass/test_empty.rb
281
- - test/lib/facets/core/nilclass/test_blank.rb
282
- - test/lib/facets/core/nilclass/test_to_h.rb
283
- - test/lib/facets/core/nilclass/test_op_fetch.rb
284
- - test/lib/facets/core/nilclass/test_include.rb
285
- - test/lib/facets/core/numeric/test_succ.rb
286
- - test/lib/facets/core/numeric/test_to_b.rb
287
- - test/lib/facets/core/numeric/test_ceil_multiple.rb
288
- - test/lib/facets/core/numeric/test_approx.rb
289
- - test/lib/facets/core/ostruct/test___update__.rb
290
- - test/lib/facets/core/ostruct/test___merge__.rb
291
- - test/lib/facets/core/ostruct/test_op_store.rb
292
- - test/lib/facets/core/ostruct/test_op_fetch.rb
293
- - test/lib/facets/core/proc/test_to_method.rb
294
- - test/lib/facets/core/proc/test_compose.rb
295
- - test/lib/facets/core/range/test_within.rb
296
- - test/lib/facets/core/range/test_umbrella.rb
297
- - test/lib/facets/core/range/test_to_r.rb
298
- - test/lib/facets/core/range/test_to_range.rb
299
- - test/lib/facets/core/regexp/test_to_regexp.rb
300
- - test/lib/facets/core/regexp/test_to_re.rb
301
- - test/lib/facets/core/regexp/test_arity.rb
302
- - test/lib/facets/core/string/test_push.rb
303
- - test/lib/facets/core/string/test_shift.rb
304
- - test/lib/facets/core/string/test_dresner.rb
305
- - test/lib/facets/core/string/test_word_filter.rb
306
- - test/lib/facets/core/string/test_unix_crypt.rb
307
- - test/lib/facets/core/string/test_camelcase.rb
308
- - test/lib/facets/core/string/test_humanize.rb
309
- - test/lib/facets/core/string/test_margin.rb
310
- - test/lib/facets/core/string/test_word_wrap.rb
311
- - test/lib/facets/core/string/test_last.rb
312
- - test/lib/facets/core/string/test_unpack.rb
313
- - test/lib/facets/core/string/test_rand_index.rb
314
- - test/lib/facets/core/string/test_nchar.rb
315
- - test/lib/facets/core/string/test_singular.rb
316
- - test/lib/facets/core/string/test_similarity.rb
317
- - test/lib/facets/core/string/test_rand_byte.rb
318
- - test/lib/facets/core/string/test_to_proc.rb
319
- - test/lib/facets/core/string/test_blank.rb
320
- - test/lib/facets/core/string/test_demodulize.rb
321
- - test/lib/facets/core/string/test_to_date.rb
322
- - test/lib/facets/core/string/test_chars.rb
323
- - test/lib/facets/core/string/test_pot.rb
324
- - test/lib/facets/core/string/test_capitalized.rb
325
- - test/lib/facets/core/string/test_basename.rb
326
- - test/lib/facets/core/string/test_downcase.rb
327
- - test/lib/facets/core/string/test_succ.rb
328
- - test/lib/facets/core/string/test_probability.rb
329
- - test/lib/facets/core/string/test_cmp.rb
330
- - test/lib/facets/core/string/test_whitespace.rb
331
- - test/lib/facets/core/string/test_at_rand.rb
332
- - test/lib/facets/core/string/test_first.rb
333
- - test/lib/facets/core/string/test_fold.rb
334
- - test/lib/facets/core/string/test_camelize.rb
335
- - test/lib/facets/core/string/test_range.rb
336
- - test/lib/facets/core/string/test_to_a.rb
337
- - test/lib/facets/core/string/test_to_b.rb
338
- - test/lib/facets/core/string/test_to_re.rb
339
- - test/lib/facets/core/string/test_line_wrap.rb
340
- - test/lib/facets/core/string/test_align_center.rb
341
- - test/lib/facets/core/string/test_words.rb
342
- - test/lib/facets/core/string/test_indent.rb
343
- - test/lib/facets/core/string/test_upcase.rb
344
- - test/lib/facets/core/string/test_to_const.rb
345
- - test/lib/facets/core/string/test_pop.rb
346
- - test/lib/facets/core/string/test_range_of_line.rb
347
- - test/lib/facets/core/string/test_frequency.rb
348
- - test/lib/facets/core/string/test_lowercase.rb
349
- - test/lib/facets/core/string/test_to_time.rb
350
- - test/lib/facets/core/string/test_shuffle.rb
351
- - test/lib/facets/core/string/test_each_char.rb
352
- - test/lib/facets/core/string/test_unshift.rb
353
- - test/lib/facets/core/string/test_each_word.rb
354
- - test/lib/facets/core/string/test_bracket.rb
355
- - test/lib/facets/core/string/test_index_all.rb
356
- - test/lib/facets/core/string/test_quote.rb
357
- - test/lib/facets/core/string/test_regesc.rb
358
- - test/lib/facets/core/string/test_soundex.rb
359
- - test/lib/facets/core/string/test_range_all.rb
360
- - test/lib/facets/core/string/test_mscan.rb
361
- - test/lib/facets/core/string/test_shatter.rb
362
- - test/lib/facets/core/string/test_natcmp.rb
363
- - test/lib/facets/core/string/test_lines.rb
364
- - test/lib/facets/core/string/test_modulize.rb
365
- - test/lib/facets/core/string/test_pathize.rb
366
- - test/lib/facets/core/string/test_methodize.rb
367
- - test/lib/facets/core/string/self
368
- - test/lib/facets/core/string/self/test_patterns.rb
369
- - test/lib/facets/core/string/self/test_rand_letter.rb
370
- - test/lib/facets/core/string/self/test_interpolate.rb
371
- - test/lib/facets/core/symbol/test_camelcase.rb
372
- - test/lib/facets/core/symbol/test_to_proc.rb
373
- - test/lib/facets/core/symbol/test_capitalize.rb
374
- - test/lib/facets/core/symbol/test_capitalized.rb
375
- - test/lib/facets/core/symbol/test_downcase.rb
376
- - test/lib/facets/core/symbol/test_succ.rb
377
- - test/lib/facets/core/symbol/test_camelize.rb
378
- - test/lib/facets/core/symbol/test_upcase.rb
379
- - test/lib/facets/core/symbol/test_not.rb
380
- - test/lib/facets/core/symbol/test_pad.rb
381
- - test/lib/facets/core/symbol/test_to_const.rb
382
- - test/lib/facets/core/symbol/test_underscore.rb
383
- - test/lib/facets/core/symbol/test_to_str.rb
384
- - test/lib/facets/core/time/test_change.rb
385
- - test/lib/facets/core/time/test_to_date.rb
386
- - test/lib/facets/core/time/test_to_s.rb
387
- - test/lib/facets/core/time/test_stamp.rb
388
- - test/lib/facets/core/time/test_to_time.rb
389
- - test/lib/facets/core/time/test_elapse.rb
390
- - test/lib/facets/more/test_annotation.rb
391
- - test/lib/facets/more/test_ansicode.rb
392
- - test/lib/facets/more/test_association.rb
393
- - test/lib/facets/more/test_basicobject.rb
394
- - test/lib/facets/more/test_bbcode.rb
395
- - test/lib/facets/more/test_binaryreader.rb
396
- - test/lib/facets/more/test_bitmask.rb
397
- - test/lib/facets/more/test_classinherit.rb
398
- - test/lib/facets/more/test_classmethods.rb
399
- - test/lib/facets/more/test_coroutine.rb
400
- - test/lib/facets/more/test_crypt.rb
401
- - test/lib/facets/more/test_dictionary.rb
402
- - test/lib/facets/more/test_multipliers.rb
403
- - test/lib/facets/more/test_bytes.rb
404
- - test/lib/facets/more/test_enumerablepass.rb
405
- - test/lib/facets/more/test_floatstring.rb
406
- - test/lib/facets/more/test_functor.rb
407
- - test/lib/facets/more/test_inheritor.rb
408
- - test/lib/facets/more/test_interval.rb
409
- - test/lib/facets/more/test_lisp_format.rb
410
- - test/lib/facets/more/test_lisp.rb
411
- - test/lib/facets/more/test_lrucache.rb
412
- - test/lib/facets/more/test_mathconstants.rb
413
- - test/lib/facets/more/test_methodprobe.rb
414
- - test/lib/facets/more/test_multiton.rb
415
- - test/lib/facets/more/test_nackclass.rb
416
- - test/lib/facets/more/test_nilcomparable.rb
417
- - test/lib/facets/more/test_openobject.rb
418
- - test/lib/facets/more/test_paramix.rb
419
- - test/lib/facets/more/test_preinitialize.rb
420
- - test/lib/facets/more/test_snapshot.rb
421
- - test/lib/facets/more/test_statichash.rb
422
- - test/lib/facets/more/test_synchash.rb
423
- - test/lib/facets/more/test_syncarray.rb
424
- - test/lib/facets/more/test_yamlstruct.rb
425
- - test/lib/facets/more/test_uninheritable.rb
426
- - test/lib/facets/more/test_tuple.rb
427
- - test/lib/facets/more/test_timer.rb
428
- - test/lib/facets/more/test_tagiterator.rb
429
- - test/lib/facets/more/test_units.rb
430
- - test/lib/facets/more/test_times.rb
431
- - test/lib/facets/more/test_typecast.rb
432
- - test/lib/facets/more/test_promoteself.rb
433
- - test/lib/facets/more/test_overload.rb
434
- - test/lib/facets/more/test_elementor.rb
435
- - test/lib/facets/more/test_json.rb
436
- - test/lib/facets/more/test_xoxo.rb
437
- - test/lib/facets/more/test_recorder.rb
438
- - test/lib/facets/more/test_xmlhelper.rb
439
- - test/lib/facets/more/test_xmlbuilder.rb
440
- - test/lib/facets/more/test_htmlbuilder.rb
441
- - test/lib/facets/more/test_taskable.rb
442
- - test/lib/facets/more/test_opencascade.rb
443
- - test/lib/facets/more/test_pqueue.rb
444
- - test/lib/facets/more/test_annotatedattr.rb
445
- - test/lib/facets/more/test_annattr.rb
446
- - test/FIXTURE/ls_r
447
- - test/FIXTURE/test_file.txt
448
- - test/FIXTURE/filelist
449
- - test/FIXTURE/test_file2.txt
450
- - test/FIXTURE/ls_r/A
451
- - test/FIXTURE/ls_r/A.txt
452
- - test/FIXTURE/ls_r/A/B
453
- - test/FIXTURE/ls_r/A/B.txt
454
- - test/FIXTURE/ls_r/A/B/C.txt
455
- - test/FIXTURE/filelist/testfile.txt
456
- - test/FIXTURE/filelist/testfile2.txt
44
+ - setup.rb
45
+ - note/history
46
+ - note/IMPORTANT
47
+ - note/CHANGELOG
48
+ - note/Rakefile.old
49
+ - note/history/ANN-0.6.0
50
+ - note/history/ANN-0.6.1
51
+ - note/history/ANN-0.6.3
52
+ - note/history/ANN-0.7.0
53
+ - note/history/ANN-0.8.1
54
+ - note/history/INTRO
55
+ - note/history/README
56
+ - note/history/README-OLD
57
+ - data/facets
58
+ - data/facets/units
59
+ - data/facets/units/si
60
+ - data/facets/units/uk
61
+ - data/facets/units/us
62
+ - data/facets/units/cex.yaml
63
+ - data/facets/units/default.yaml
64
+ - data/facets/units/currency
65
+ - data/facets/units/binary
66
+ - data/facets/units/dump_yaml.rb
67
+ - data/facets/units/uk.yaml
68
+ - data/facets/units/us.yaml
69
+ - data/facets/units/standard.yaml
70
+ - data/facets/units/xmethods
71
+ - data/facets/units/si/derived.yaml
72
+ - data/facets/units/si/extra.yaml
73
+ - data/facets/units/si/base.yaml
74
+ - data/facets/units/uk/base.yaml
75
+ - data/facets/units/us/base.yaml
76
+ - data/facets/units/currency/base.yaml
77
+ - data/facets/units/binary/extra.yaml
78
+ - data/facets/units/binary/base.yaml
79
+ - data/facets/units/xmethods/mapping.yaml
80
+ - data/facets/units/xmethods/cached.yaml
81
+ - web/favicon.ico
82
+ - web/index.html
83
+ - web/images
84
+ - web/doc
85
+ - web/style.css
86
+ - web/documentation.html
87
+ - web/images/core.jpg
88
+ - web/images/ruby-lg.png
89
+ - web/images/gray.jpg
90
+ - web/images/abc1.png
91
+ - web/images/ruby.gif
92
+ - web/images/abc.png
93
+ - web/images/best_jupiter_cass.jpg
94
+ - web/images/super-friends-volume-two-20050606010933166-001.jpg
95
+ - web/images/apple_core.jpg
96
+ - web/images/three_apples.jpg
97
+ - web/images/apples3.jpg
98
+ - web/images/yellow_fade.jpg
99
+ - web/images/yellow_fade2.jpg
100
+ - web/doc/api
101
+ - web/doc/api/more
102
+ - web/doc/api/core/created.rid
103
+ - web/doc/api/core/rdoc-style.css
104
+ - web/doc/api/core/files
105
+ - web/doc/api/core/classes
106
+ - web/doc/api/core/fr_file_index.html
107
+ - web/doc/api/core/fr_class_index.html
108
+ - web/doc/api/core/fr_method_index.html
109
+ - web/doc/api/core/index.html
110
+ - web/doc/api/core/files/COPYING.html
111
+ - web/doc/api/core/files/README.html
112
+ - web/doc/api/core/files/WARNING.html
113
+ - web/doc/api/core/files/AUTHORS.html
114
+ - web/doc/api/core/files/lib
115
+ - web/doc/api/core/files/lib/facets
116
+ - web/doc/api/core/files/lib/facets/core/all_rb.html
117
+ - web/doc/api/core/files/lib/facets/core/binding_rb.html
118
+ - web/doc/api/core/files/lib/facets/core/ostruct_rb.html
119
+ - web/doc/api/core/files/lib/facets/core/inflect_rb.html
120
+ - web/doc/api/core/files/lib/facets/core/string_as_array_rb.html
121
+ - web/doc/api/core/files/lib/facets/core/random_rb.html
122
+ - web/doc/api/core/files/lib/facets/core/nil_as_emptiness_rb.html
123
+ - web/doc/api/core/files/lib/facets/core/array
124
+ - web/doc/api/core/files/lib/facets/core/binding
125
+ - web/doc/api/core/files/lib/facets/core/class
126
+ - web/doc/api/core/files/lib/facets/core/comparable
127
+ - web/doc/api/core/files/lib/facets/core/continuation
128
+ - web/doc/api/core/files/lib/facets/core/date
129
+ - web/doc/api/core/files/lib/facets/core/dir
130
+ - web/doc/api/core/files/lib/facets/core/enumerable
131
+ - web/doc/api/core/files/lib/facets/core/file
132
+ - web/doc/api/core/files/lib/facets/core/fileutils
133
+ - web/doc/api/core/files/lib/facets/core/float
134
+ - web/doc/api/core/files/lib/facets/core/hash
135
+ - web/doc/api/core/files/lib/facets/core/integer
136
+ - web/doc/api/core/files/lib/facets/core/kernel
137
+ - web/doc/api/core/files/lib/facets/core/logger
138
+ - web/doc/api/core/files/lib/facets/core/matchdata
139
+ - web/doc/api/core/files/lib/facets/core/module
140
+ - web/doc/api/core/files/lib/facets/core/nilclass
141
+ - web/doc/api/core/files/lib/facets/core/numeric
142
+ - web/doc/api/core/files/lib/facets/core/ostruct
143
+ - web/doc/api/core/files/lib/facets/core/pathname
144
+ - web/doc/api/core/files/lib/facets/core/proc
145
+ - web/doc/api/core/files/lib/facets/core/range
146
+ - web/doc/api/core/files/lib/facets/core/regexp
147
+ - web/doc/api/core/files/lib/facets/core/string
148
+ - web/doc/api/core/files/lib/facets/core/symbol
149
+ - web/doc/api/core/files/lib/facets/core/time
150
+ - web/doc/api/core/files/lib/facets/core/unboundmethod
151
+ - web/doc/api/core/files/lib/facets/core/gem
152
+ - web/doc/api/core/files/lib/facets/core/array/pull_rb.html
153
+ - web/doc/api/core/files/lib/facets/core/array/each_with_key_rb.html
154
+ - web/doc/api/core/files/lib/facets/core/array/merge_rb.html
155
+ - web/doc/api/core/files/lib/facets/core/array/select_rb.html
156
+ - web/doc/api/core/files/lib/facets/core/array/last_rb.html
157
+ - web/doc/api/core/files/lib/facets/core/array/rand_index_rb.html
158
+ - web/doc/api/core/files/lib/facets/core/array/rand_subset_rb.html
159
+ - web/doc/api/core/files/lib/facets/core/array/tail_rb.html
160
+ - web/doc/api/core/files/lib/facets/core/array/unzip_rb.html
161
+ - web/doc/api/core/files/lib/facets/core/array/delete_unless_rb.html
162
+ - web/doc/api/core/files/lib/facets/core/array/delete_values_rb.html
163
+ - web/doc/api/core/files/lib/facets/core/array/last_index_rb.html
164
+ - web/doc/api/core/files/lib/facets/core/array/thru_rb.html
165
+ - web/doc/api/core/files/lib/facets/core/array/at_rand_rb.html
166
+ - web/doc/api/core/files/lib/facets/core/array/first_rb.html
167
+ - web/doc/api/core/files/lib/facets/core/array/foot_rb.html
168
+ - web/doc/api/core/files/lib/facets/core/array/range_rb.html
169
+ - web/doc/api/core/files/lib/facets/core/array/to_b_rb.html
170
+ - web/doc/api/core/files/lib/facets/core/array/to_h_rb.html
171
+ - web/doc/api/core/files/lib/facets/core/array/mid_rb.html
172
+ - web/doc/api/core/files/lib/facets/core/array/delete_values_at_rb.html
173
+ - web/doc/api/core/files/lib/facets/core/array/head_rb.html
174
+ - web/doc/api/core/files/lib/facets/core/array/pos_rb.html
175
+ - web/doc/api/core/files/lib/facets/core/array/rotate_rb.html
176
+ - web/doc/api/core/files/lib/facets/core/array/shuffle_rb.html
177
+ - web/doc/api/core/files/lib/facets/core/array/op_store_rb.html
178
+ - web/doc/api/core/files/lib/facets/core/array/op_fetch_rb.html
179
+ - web/doc/api/core/files/lib/facets/core/array/middle_rb.html
180
+ - web/doc/api/core/files/lib/facets/core/array/pick_rb.html
181
+ - web/doc/api/core/files/lib/facets/core/array/to_hash_rb.html
182
+ - web/doc/api/core/files/lib/facets/core/array/body_rb.html
183
+ - web/doc/api/core/files/lib/facets/core/array/store_rb.html
184
+ - web/doc/api/core/files/lib/facets/core/array/op_mod_rb.html
185
+ - web/doc/api/core/files/lib/facets/core/array/join_sentence_rb.html
186
+ - web/doc/api/core/files/lib/facets/core/array/pot_rb.html
187
+ - web/doc/api/core/files/lib/facets/core/binding/call_stack_rb.html
188
+ - web/doc/api/core/files/lib/facets/core/binding/self_rb.html
189
+ - web/doc/api/core/files/lib/facets/core/binding/__DIR___rb.html
190
+ - web/doc/api/core/files/lib/facets/core/binding/__LINE___rb.html
191
+ - web/doc/api/core/files/lib/facets/core/binding/eval_rb.html
192
+ - web/doc/api/core/files/lib/facets/core/binding/method_name_rb.html
193
+ - web/doc/api/core/files/lib/facets/core/binding/called_rb.html
194
+ - web/doc/api/core/files/lib/facets/core/binding/caller_rb.html
195
+ - web/doc/api/core/files/lib/facets/core/binding/__FILE___rb.html
196
+ - web/doc/api/core/files/lib/facets/core/binding/defined_rb.html
197
+ - web/doc/api/core/files/lib/facets/core/binding/op_store_rb.html
198
+ - web/doc/api/core/files/lib/facets/core/binding/op_fetch_rb.html
199
+ - web/doc/api/core/files/lib/facets/core/binding/local_variables_rb.html
200
+ - web/doc/api/core/files/lib/facets/core/binding/self
201
+ - web/doc/api/core/files/lib/facets/core/binding/self/of_caller_rb.html
202
+ - web/doc/api/core/files/lib/facets/core/class/descendents_rb.html
203
+ - web/doc/api/core/files/lib/facets/core/class/remove_subclasses_rb.html
204
+ - web/doc/api/core/files/lib/facets/core/class/remove_descendents_rb.html
205
+ - web/doc/api/core/files/lib/facets/core/class/subclasses_rb.html
206
+ - web/doc/api/core/files/lib/facets/core/class/by_name_rb.html
207
+ - web/doc/api/core/files/lib/facets/core/class/unix_path_rb.html
208
+ - web/doc/api/core/files/lib/facets/core/class/method_name_rb.html
209
+ - web/doc/api/core/files/lib/facets/core/class/cattr_rb.html
210
+ - web/doc/api/core/files/lib/facets/core/class/cattr_accessor_rb.html
211
+ - web/doc/api/core/files/lib/facets/core/class/cattr_reader_rb.html
212
+ - web/doc/api/core/files/lib/facets/core/class/cattr_writer_rb.html
213
+ - web/doc/api/core/files/lib/facets/core/class/to_proc_rb.html
214
+ - web/doc/api/core/files/lib/facets/core/comparable/cap_rb.html
215
+ - web/doc/api/core/files/lib/facets/core/comparable/cmp_rb.html
216
+ - web/doc/api/core/files/lib/facets/core/comparable/at_least_rb.html
217
+ - web/doc/api/core/files/lib/facets/core/comparable/at_most_rb.html
218
+ - web/doc/api/core/files/lib/facets/core/comparable/clip_rb.html
219
+ - web/doc/api/core/files/lib/facets/core/continuation/self
220
+ - web/doc/api/core/files/lib/facets/core/continuation/self/create_rb.html
221
+ - web/doc/api/core/files/lib/facets/core/date/to_date_rb.html
222
+ - web/doc/api/core/files/lib/facets/core/date/days_in_month_rb.html
223
+ - web/doc/api/core/files/lib/facets/core/date/to_s_rb.html
224
+ - web/doc/api/core/files/lib/facets/core/date/stamp_rb.html
225
+ - web/doc/api/core/files/lib/facets/core/date/to_time_rb.html
226
+ - web/doc/api/core/files/lib/facets/core/date/days_of_month_rb.html
227
+ - web/doc/api/core/files/lib/facets/core/dir/self
228
+ - web/doc/api/core/files/lib/facets/core/dir/self/recurse_rb.html
229
+ - web/doc/api/core/files/lib/facets/core/dir/self/ls_r_rb.html
230
+ - web/doc/api/core/files/lib/facets/core/dir/self/ancestor_rb.html
231
+ - web/doc/api/core/files/lib/facets/core/dir/self/ascend_rb.html
232
+ - web/doc/api/core/files/lib/facets/core/dir/self/descend_rb.html
233
+ - web/doc/api/core/files/lib/facets/core/enumerable/find_collisions_rb.html
234
+ - web/doc/api/core/files/lib/facets/core/enumerable/map_with_counter_rb.html
235
+ - web/doc/api/core/files/lib/facets/core/enumerable/each_unique_pair_rb.html
236
+ - web/doc/api/core/files/lib/facets/core/enumerable/ew_rb.html
237
+ - web/doc/api/core/files/lib/facets/core/enumerable/graph_rb.html
238
+ - web/doc/api/core/files/lib/facets/core/enumerable/elementwise_rb.html
239
+ - web/doc/api/core/files/lib/facets/core/enumerable/filter_collect_rb.html
240
+ - web/doc/api/core/files/lib/facets/core/enumerable/map_with_index_rb.html
241
+ - web/doc/api/core/files/lib/facets/core/enumerable/ideal_entropy_rb.html
242
+ - web/doc/api/core/files/lib/facets/core/enumerable/where_rb.html
243
+ - web/doc/api/core/files/lib/facets/core/enumerable/partition_by_rb.html
244
+ - web/doc/api/core/files/lib/facets/core/enumerable/nonuniq_rb.html
245
+ - web/doc/api/core/files/lib/facets/core/enumerable/each_permutation_rb.html
246
+ - web/doc/api/core/files/lib/facets/core/enumerable/probability_rb.html
247
+ - web/doc/api/core/files/lib/facets/core/enumerable/collect_with_counter_rb.html
248
+ - web/doc/api/core/files/lib/facets/core/enumerable/collect_with_index_rb.html
249
+ - web/doc/api/core/files/lib/facets/core/enumerable/to_h_rb.html
250
+ - web/doc/api/core/files/lib/facets/core/enumerable/each_by_rb.html
251
+ - web/doc/api/core/files/lib/facets/core/enumerable/each_pair_rb.html
252
+ - web/doc/api/core/files/lib/facets/core/enumerable/every_rb.html
253
+ - web/doc/api/core/files/lib/facets/core/enumerable/compact_collect_rb.html
254
+ - web/doc/api/core/files/lib/facets/core/enumerable/one_rb.html
255
+ - web/doc/api/core/files/lib/facets/core/enumerable/none_rb.html
256
+ - web/doc/api/core/files/lib/facets/core/enumerable/project_rb.html
257
+ - web/doc/api/core/files/lib/facets/core/enumerable/op_pow_rb.html
258
+ - web/doc/api/core/files/lib/facets/core/enumerable/frequency_rb.html
259
+ - web/doc/api/core/files/lib/facets/core/enumerable/compact_map_rb.html
260
+ - web/doc/api/core/files/lib/facets/core/enumerable/filter_map_rb.html
261
+ - web/doc/api/core/files/lib/facets/core/enumerable/permute_rb.html
262
+ - web/doc/api/core/files/lib/facets/core/enumerable/occur_rb.html
263
+ - web/doc/api/core/files/lib/facets/core/enumerable/commonality_rb.html
264
+ - web/doc/api/core/files/lib/facets/core/enumerable/each_combination_rb.html
265
+ - web/doc/api/core/files/lib/facets/core/enumerable/each_slice_rb.html
266
+ - web/doc/api/core/files/lib/facets/core/enumerable/entropy_rb.html
267
+ - web/doc/api/core/files/lib/facets/core/enumerable/each_with_counter_rb.html
268
+ - web/doc/api/core/files/lib/facets/core/enumerable/uniq_by_rb.html
269
+ - web/doc/api/core/files/lib/facets/core/enumerable/cross_rb.html
270
+ - web/doc/api/core/files/lib/facets/core/enumerable/accumulate_rb.html
271
+ - web/doc/api/core/files/lib/facets/core/enumerable/collect_if_rb.html
272
+ - web/doc/api/core/files/lib/facets/core/enumerable/count_rb.html
273
+ - web/doc/api/core/files/lib/facets/core/enumerable/map_if_rb.html
274
+ - web/doc/api/core/files/lib/facets/core/enumerable/mode_rb.html
275
+ - web/doc/api/core/files/lib/facets/core/enumerable/self
276
+ - web/doc/api/core/files/lib/facets/core/enumerable/self/combinations_rb.html
277
+ - web/doc/api/core/files/lib/facets/core/enumerable/self/cross_rb.html
278
+ - web/doc/api/core/files/lib/facets/core/file/self
279
+ - web/doc/api/core/files/lib/facets/core/file/self/open_as_string_rb.html
280
+ - web/doc/api/core/files/lib/facets/core/file/self/read_list_rb.html
281
+ - web/doc/api/core/files/lib/facets/core/file/self/sanitize_rb.html
282
+ - web/doc/api/core/files/lib/facets/core/file/self/split_all_rb.html
283
+ - web/doc/api/core/files/lib/facets/core/file/self/create_rb.html
284
+ - web/doc/api/core/files/lib/facets/core/file/self/read_binary_rb.html
285
+ - web/doc/api/core/files/lib/facets/core/file/self/write_rb.html
286
+ - web/doc/api/core/files/lib/facets/core/file/self/append_rb.html
287
+ - web/doc/api/core/files/lib/facets/core/fileutils/wc_rb.html
288
+ - web/doc/api/core/files/lib/facets/core/fileutils/tail_rb.html
289
+ - web/doc/api/core/files/lib/facets/core/fileutils/which_rb.html
290
+ - web/doc/api/core/files/lib/facets/core/fileutils/safe_ln_rb.html
291
+ - web/doc/api/core/files/lib/facets/core/fileutils/split_all_rb.html
292
+ - web/doc/api/core/files/lib/facets/core/fileutils/head_rb.html
293
+ - web/doc/api/core/files/lib/facets/core/fileutils/slice_rb.html
294
+ - web/doc/api/core/files/lib/facets/core/fileutils/whereis_rb.html
295
+ - web/doc/api/core/files/lib/facets/core/float/approx_rb.html
296
+ - web/doc/api/core/files/lib/facets/core/float/round_at_rb.html
297
+ - web/doc/api/core/files/lib/facets/core/float/round_to_rb.html
298
+ - web/doc/api/core/files/lib/facets/core/float/round_off_rb.html
299
+ - web/doc/api/core/files/lib/facets/core/hash/collate_rb.html
300
+ - web/doc/api/core/files/lib/facets/core/hash/assert_has_keys_rb.html
301
+ - web/doc/api/core/files/lib/facets/core/hash/each_with_key_rb.html
302
+ - web/doc/api/core/files/lib/facets/core/hash/join_rb.html
303
+ - web/doc/api/core/files/lib/facets/core/hash/at_rb.html
304
+ - web/doc/api/core/files/lib/facets/core/hash/each_rb.html
305
+ - web/doc/api/core/files/lib/facets/core/hash/each_with_index_rb.html
306
+ - web/doc/api/core/files/lib/facets/core/hash/graph_rb.html
307
+ - web/doc/api/core/files/lib/facets/core/hash/to_ostruct_rb.html
308
+ - web/doc/api/core/files/lib/facets/core/hash/update_values_rb.html
309
+ - web/doc/api/core/files/lib/facets/core/hash/inverse_rb.html
310
+ - web/doc/api/core/files/lib/facets/core/hash/rand_value_rb.html
311
+ - web/doc/api/core/files/lib/facets/core/hash/assert_has_only_keys_rb.html
312
+ - web/doc/api/core/files/lib/facets/core/hash/keys_to_sym_rb.html
313
+ - web/doc/api/core/files/lib/facets/core/hash/delete_unless_rb.html
314
+ - web/doc/api/core/files/lib/facets/core/hash/has_only_keys_rb.html
315
+ - web/doc/api/core/files/lib/facets/core/hash/replace_each_rb.html
316
+ - web/doc/api/core/files/lib/facets/core/hash/swap_rb.html
317
+ - web/doc/api/core/files/lib/facets/core/hash/rand_key_rb.html
318
+ - web/doc/api/core/files/lib/facets/core/hash/to_h_rb.html
319
+ - web/doc/api/core/files/lib/facets/core/hash/variablize_keys_rb.html
320
+ - web/doc/api/core/files/lib/facets/core/hash/keys_to_iv_rb.html
321
+ - web/doc/api/core/files/lib/facets/core/hash/slice_rb.html
322
+ - web/doc/api/core/files/lib/facets/core/hash/traverse_rb.html
323
+ - web/doc/api/core/files/lib/facets/core/hash/shuffle_rb.html
324
+ - web/doc/api/core/files/lib/facets/core/hash/alias_rb.html
325
+ - web/doc/api/core/files/lib/facets/core/hash/symoblize_keys_rb.html
326
+ - web/doc/api/core/files/lib/facets/core/hash/op_store_rb.html
327
+ - web/doc/api/core/files/lib/facets/core/hash/op_fetch_rb.html
328
+ - web/doc/api/core/files/lib/facets/core/hash/has_keys_rb.html
329
+ - web/doc/api/core/files/lib/facets/core/hash/to_ostruct_recurse_rb.html
330
+ - web/doc/api/core/files/lib/facets/core/hash/swapkey_rb.html
331
+ - web/doc/api/core/files/lib/facets/core/hash/keys_to_s_rb.html
332
+ - web/doc/api/core/files/lib/facets/core/hash/weave_rb.html
333
+ - web/doc/api/core/files/lib/facets/core/hash/op_lshift_rb.html
334
+ - web/doc/api/core/files/lib/facets/core/hash/update_keys_rb.html
335
+ - web/doc/api/core/files/lib/facets/core/hash/stringify_keys_rb.html
336
+ - web/doc/api/core/files/lib/facets/core/hash/rand_pair_rb.html
337
+ - web/doc/api/core/files/lib/facets/core/hash/update_each_rb.html
338
+ - web/doc/api/core/files/lib/facets/core/hash/to_proc_rb.html
339
+ - web/doc/api/core/files/lib/facets/core/hash/self
340
+ - web/doc/api/core/files/lib/facets/core/hash/self/zipnew_rb.html
341
+ - web/doc/api/core/files/lib/facets/core/integer/multiple_rb.html
342
+ - web/doc/api/core/files/lib/facets/core/integer/times_collect_rb.html
343
+ - web/doc/api/core/files/lib/facets/core/integer/times_map_rb.html
344
+ - web/doc/api/core/files/lib/facets/core/integer/fact_rb.html
345
+ - web/doc/api/core/files/lib/facets/core/integer/even_rb.html
346
+ - web/doc/api/core/files/lib/facets/core/integer/fac_rb.html
347
+ - web/doc/api/core/files/lib/facets/core/integer/odd_rb.html
348
+ - web/doc/api/core/files/lib/facets/core/integer/factorial_rb.html
349
+ - web/doc/api/core/files/lib/facets/core/integer/ordinal_rb.html
350
+ - web/doc/api/core/files/lib/facets/core/kernel/call_stack_rb.html
351
+ - web/doc/api/core/files/lib/facets/core/kernel/p_rb.html
352
+ - web/doc/api/core/files/lib/facets/core/kernel/get_by_id_rb.html
353
+ - web/doc/api/core/files/lib/facets/core/kernel/constant_rb.html
354
+ - web/doc/api/core/files/lib/facets/core/kernel/copy_rb.html
355
+ - web/doc/api/core/files/lib/facets/core/kernel/demo_rb.html
356
+ - web/doc/api/core/files/lib/facets/core/kernel/resc_rb.html
357
+ - web/doc/api/core/files/lib/facets/core/kernel/__self___rb.html
358
+ - web/doc/api/core/files/lib/facets/core/kernel/set_with_rb.html
359
+ - web/doc/api/core/files/lib/facets/core/kernel/require_all_rb.html
360
+ - web/doc/api/core/files/lib/facets/core/kernel/as_rb.html
361
+ - web/doc/api/core/files/lib/facets/core/kernel/fn_rb.html
362
+ - web/doc/api/core/files/lib/facets/core/kernel/in_rb.html
363
+ - web/doc/api/core/files/lib/facets/core/kernel/is_rb.html
364
+ - web/doc/api/core/files/lib/facets/core/kernel/me_rb.html
365
+ - web/doc/api/core/files/lib/facets/core/kernel/to_bool_rb.html
366
+ - web/doc/api/core/files/lib/facets/core/kernel/require_esc_rb.html
367
+ - web/doc/api/core/files/lib/facets/core/kernel/singleton_rb.html
368
+ - web/doc/api/core/files/lib/facets/core/kernel/false_rb.html
369
+ - web/doc/api/core/files/lib/facets/core/kernel/instance_assign_rb.html
370
+ - web/doc/api/core/files/lib/facets/core/kernel/autoreload_rb.html
371
+ - web/doc/api/core/files/lib/facets/core/kernel/methods_rb.html
372
+ - web/doc/api/core/files/lib/facets/core/kernel/unuri_rb.html
373
+ - web/doc/api/core/files/lib/facets/core/kernel/autoreload_glob_rb.html
374
+ - web/doc/api/core/files/lib/facets/core/kernel/assign_from_rb.html
375
+ - web/doc/api/core/files/lib/facets/core/kernel/__DIR___rb.html
376
+ - web/doc/api/core/files/lib/facets/core/kernel/__class___rb.html
377
+ - web/doc/api/core/files/lib/facets/core/kernel/cache_rb.html
378
+ - web/doc/api/core/files/lib/facets/core/kernel/send_as_rb.html
379
+ - web/doc/api/core/files/lib/facets/core/kernel/this_rb.html
380
+ - web/doc/api/core/files/lib/facets/core/kernel/nack_rb.html
381
+ - web/doc/api/core/files/lib/facets/core/kernel/silence_warnings_rb.html
382
+ - web/doc/api/core/files/lib/facets/core/kernel/bug_rb.html
383
+ - web/doc/api/core/files/lib/facets/core/kernel/method_name_rb.html
384
+ - web/doc/api/core/files/lib/facets/core/kernel/generate_method_name_rb.html
385
+ - web/doc/api/core/files/lib/facets/core/kernel/with_reader_rb.html
386
+ - web/doc/api/core/files/lib/facets/core/kernel/to_b_rb.html
387
+ - web/doc/api/core/files/lib/facets/core/kernel/supermethod_rb.html
388
+ - web/doc/api/core/files/lib/facets/core/kernel/op_esc_rb.html
389
+ - web/doc/api/core/files/lib/facets/core/kernel/maybe_rb.html
390
+ - web/doc/api/core/files/lib/facets/core/kernel/require_local_rb.html
391
+ - web/doc/api/core/files/lib/facets/core/kernel/true_rb.html
392
+ - web/doc/api/core/files/lib/facets/core/kernel/with_writer_rb.html
393
+ - web/doc/api/core/files/lib/facets/core/kernel/complete_rb.html
394
+ - web/doc/api/core/files/lib/facets/core/kernel/object_class_rb.html
395
+ - web/doc/api/core/files/lib/facets/core/kernel/new_rb.html
396
+ - web/doc/api/core/files/lib/facets/core/kernel/with_accessor_rb.html
397
+ - web/doc/api/core/files/lib/facets/core/kernel/returning_rb.html
398
+ - web/doc/api/core/files/lib/facets/core/kernel/adhoc_rb.html
399
+ - web/doc/api/core/files/lib/facets/core/kernel/own_rb.html
400
+ - web/doc/api/core/files/lib/facets/core/kernel/instvar_rb.html
401
+ - web/doc/api/core/files/lib/facets/core/kernel/here_rb.html
402
+ - web/doc/api/core/files/lib/facets/core/kernel/called_rb.html
403
+ - web/doc/api/core/files/lib/facets/core/kernel/metaclass_rb.html
404
+ - web/doc/api/core/files/lib/facets/core/kernel/assign_with_rb.html
405
+ - web/doc/api/core/files/lib/facets/core/kernel/val_rb.html
406
+ - web/doc/api/core/files/lib/facets/core/kernel/uri_rb.html
407
+ - web/doc/api/core/files/lib/facets/core/kernel/set_from_rb.html
408
+ - web/doc/api/core/files/lib/facets/core/kernel/eigenclass_rb.html
409
+ - web/doc/api/core/files/lib/facets/core/kernel/warn_with_line_rb.html
410
+ - web/doc/api/core/files/lib/facets/core/kernel/object_hexid_rb.html
411
+ - web/doc/api/core/files/lib/facets/core/kernel/method_rb.html
412
+ - web/doc/api/core/files/lib/facets/core/kernel/deep_copy_rb.html
413
+ - web/doc/api/core/files/lib/facets/core/kernel/superior_rb.html
414
+ - web/doc/api/core/files/lib/facets/core/kernel/bool_rb.html
415
+ - web/doc/api/core/files/lib/facets/core/kernel/require_facet_rb.html
416
+ - web/doc/api/core/files/lib/facets/core/kernel/silently_rb.html
417
+ - web/doc/api/core/files/lib/facets/core/kernel/autoreload_files_rb.html
418
+ - web/doc/api/core/files/lib/facets/core/kernel/__get___rb.html
419
+ - web/doc/api/core/files/lib/facets/core/kernel/pp_exception_rb.html
420
+ - web/doc/api/core/files/lib/facets/core/kernel/methodname_rb.html
421
+ - web/doc/api/core/files/lib/facets/core/kernel/__set___rb.html
422
+ - web/doc/api/core/files/lib/facets/core/kernel/respond_rb.html
423
+ - web/doc/api/core/files/lib/facets/core/logger/format_rb.html
424
+ - web/doc/api/core/files/lib/facets/core/logger/format_message_rb.html
425
+ - web/doc/api/core/files/lib/facets/core/matchdata/matchtree_rb.html
426
+ - web/doc/api/core/files/lib/facets/core/matchdata/matchset_rb.html
427
+ - web/doc/api/core/files/lib/facets/core/matchdata/match_rb.html
428
+ - web/doc/api/core/files/lib/facets/core/module/redefine_method_rb.html
429
+ - web/doc/api/core/files/lib/facets/core/module/redirect_method_rb.html
430
+ - web/doc/api/core/files/lib/facets/core/module/initializer_rb.html
431
+ - web/doc/api/core/files/lib/facets/core/module/clone_renaming_rb.html
432
+ - web/doc/api/core/files/lib/facets/core/module/shadow_all_rb.html
433
+ - web/doc/api/core/files/lib/facets/core/module/clone_removing_rb.html
434
+ - web/doc/api/core/files/lib/facets/core/module/is_rb.html
435
+ - web/doc/api/core/files/lib/facets/core/module/modspace_rb.html
436
+ - web/doc/api/core/files/lib/facets/core/module/instance_methods_rb.html
437
+ - web/doc/api/core/files/lib/facets/core/module/attr_tester_rb.html
438
+ - web/doc/api/core/files/lib/facets/core/module/integrate_rb.html
439
+ - web/doc/api/core/files/lib/facets/core/module/basename_rb.html
440
+ - web/doc/api/core/files/lib/facets/core/module/generate_instance_method_name_rb.html
441
+ - web/doc/api/core/files/lib/facets/core/module/redirect_rb.html
442
+ - web/doc/api/core/files/lib/facets/core/module/shadow_method_rb.html
443
+ - web/doc/api/core/files/lib/facets/core/module/alias_module_function_rb.html
444
+ - web/doc/api/core/files/lib/facets/core/module/namespace_rb.html
445
+ - web/doc/api/core/files/lib/facets/core/module/abstract_rb.html
446
+ - web/doc/api/core/files/lib/facets/core/module/this_rb.html
447
+ - web/doc/api/core/files/lib/facets/core/module/nesting_rb.html
448
+ - web/doc/api/core/files/lib/facets/core/module/wrap_method_rb.html
449
+ - web/doc/api/core/files/lib/facets/core/module/class_rb.html
450
+ - web/doc/api/core/files/lib/facets/core/module/ancestor_rb.html
451
+ - web/doc/api/core/files/lib/facets/core/module/include_as_rb.html
452
+ - web/doc/api/core/files/lib/facets/core/module/rename_method_rb.html
453
+ - web/doc/api/core/files/lib/facets/core/module/attr_setter_rb.html
454
+ - web/doc/api/core/files/lib/facets/core/module/rename_rb.html
455
+ - web/doc/api/core/files/lib/facets/core/module/dirname_rb.html
456
+ - web/doc/api/core/files/lib/facets/core/module/attr_rb.html
457
+ - web/doc/api/core/files/lib/facets/core/module/remove_rb.html
458
+ - web/doc/api/core/files/lib/facets/core/module/sort_on_rb.html
459
+ - web/doc/api/core/files/lib/facets/core/module/nodef_rb.html
460
+ - web/doc/api/core/files/lib/facets/core/module/equate_on_rb.html
461
+ - web/doc/api/core/files/lib/facets/core/module/redef_rb.html
462
+ - web/doc/api/core/files/lib/facets/core/module/clone_using_rb.html
463
+ - web/doc/api/core/files/lib/facets/core/module/by_name_rb.html
464
+ - web/doc/api/core/files/lib/facets/core/module/memoize_rb.html
465
+ - web/doc/api/core/files/lib/facets/core/module/wrap_rb.html
466
+ - web/doc/api/core/files/lib/facets/core/module/revisal_rb.html
467
+ - web/doc/api/core/files/lib/facets/core/module/on_included_rb.html
468
+ - web/doc/api/core/files/lib/facets/core/module/attr_query_rb.html
469
+ - web/doc/api/core/files/lib/facets/core/module/inherit_rb.html
470
+ - web/doc/api/core/files/lib/facets/core/module/attr_validator_rb.html
471
+ - web/doc/api/core/files/lib/facets/core/module/singleton_to_module_rb.html
472
+ - web/doc/api/core/files/lib/facets/core/nilclass/size_rb.html
473
+ - web/doc/api/core/files/lib/facets/core/nilclass/length_rb.html
474
+ - web/doc/api/core/files/lib/facets/core/nilclass/empty_rb.html
475
+ - web/doc/api/core/files/lib/facets/core/nilclass/blank_rb.html
476
+ - web/doc/api/core/files/lib/facets/core/nilclass/to_h_rb.html
477
+ - web/doc/api/core/files/lib/facets/core/nilclass/op_fetch_rb.html
478
+ - web/doc/api/core/files/lib/facets/core/nilclass/include_rb.html
479
+ - web/doc/api/core/files/lib/facets/core/nilclass/succ_rb.html
480
+ - web/doc/api/core/files/lib/facets/core/nilclass/op_cmp_rb.html
481
+ - web/doc/api/core/files/lib/facets/core/numeric/succ_rb.html
482
+ - web/doc/api/core/files/lib/facets/core/numeric/to_b_rb.html
483
+ - web/doc/api/core/files/lib/facets/core/numeric/ceil_multiple_rb.html
484
+ - web/doc/api/core/files/lib/facets/core/numeric/pred_rb.html
485
+ - web/doc/api/core/files/lib/facets/core/numeric/approx_rb.html
486
+ - web/doc/api/core/files/lib/facets/core/ostruct/__update___rb.html
487
+ - web/doc/api/core/files/lib/facets/core/ostruct/__merge___rb.html
488
+ - web/doc/api/core/files/lib/facets/core/ostruct/to_h_rb.html
489
+ - web/doc/api/core/files/lib/facets/core/ostruct/op_store_rb.html
490
+ - web/doc/api/core/files/lib/facets/core/ostruct/op_fetch_rb.html
491
+ - web/doc/api/core/files/lib/facets/core/ostruct/__table___rb.html
492
+ - web/doc/api/core/files/lib/facets/core/ostruct/instance_rb.html
493
+ - web/doc/api/core/files/lib/facets/core/pathname/descend_rb.html
494
+ - web/doc/api/core/files/lib/facets/core/pathname/ascend_rb.html
495
+ - web/doc/api/core/files/lib/facets/core/proc/to_method_rb.html
496
+ - web/doc/api/core/files/lib/facets/core/proc/compose_rb.html
497
+ - web/doc/api/core/files/lib/facets/core/proc/op_mul_rb.html
498
+ - web/doc/api/core/files/lib/facets/core/range/within_rb.html
499
+ - web/doc/api/core/files/lib/facets/core/range/umbrella_rb.html
500
+ - web/doc/api/core/files/lib/facets/core/range/to_r_rb.html
501
+ - web/doc/api/core/files/lib/facets/core/range/to_range_rb.html
502
+ - web/doc/api/core/files/lib/facets/core/regexp/to_regexp_rb.html
503
+ - web/doc/api/core/files/lib/facets/core/regexp/to_re_rb.html
504
+ - web/doc/api/core/files/lib/facets/core/regexp/arity_rb.html
505
+ - web/doc/api/core/files/lib/facets/core/string/pull_rb.html
506
+ - web/doc/api/core/files/lib/facets/core/string/push_rb.html
507
+ - web/doc/api/core/files/lib/facets/core/string/uppercase_rb.html
508
+ - web/doc/api/core/files/lib/facets/core/string/shift_rb.html
509
+ - web/doc/api/core/files/lib/facets/core/string/dresner_rb.html
510
+ - web/doc/api/core/files/lib/facets/core/string/plural_rb.html
511
+ - web/doc/api/core/files/lib/facets/core/string/word_filter_rb.html
512
+ - web/doc/api/core/files/lib/facets/core/string/unix_crypt_rb.html
513
+ - web/doc/api/core/files/lib/facets/core/string/camelcase_rb.html
514
+ - web/doc/api/core/files/lib/facets/core/string/humanize_rb.html
515
+ - web/doc/api/core/files/lib/facets/core/string/at_rb.html
516
+ - web/doc/api/core/files/lib/facets/core/string/margin_rb.html
517
+ - web/doc/api/core/files/lib/facets/core/string/dequote_rb.html
518
+ - web/doc/api/core/files/lib/facets/core/string/word_wrap_rb.html
519
+ - web/doc/api/core/files/lib/facets/core/string/last_rb.html
520
+ - web/doc/api/core/files/lib/facets/core/string/unpack_rb.html
521
+ - web/doc/api/core/files/lib/facets/core/string/rand_index_rb.html
522
+ - web/doc/api/core/files/lib/facets/core/string/nchar_rb.html
523
+ - web/doc/api/core/files/lib/facets/core/string/singular_rb.html
524
+ - web/doc/api/core/files/lib/facets/core/string/brief_rb.html
525
+ - web/doc/api/core/files/lib/facets/core/string/similarity_rb.html
526
+ - web/doc/api/core/files/lib/facets/core/string/rand_byte_rb.html
527
+ - web/doc/api/core/files/lib/facets/core/string/to_proc_rb.html
528
+ - web/doc/api/core/files/lib/facets/core/string/blank_rb.html
529
+ - web/doc/api/core/files/lib/facets/core/string/demodulize_rb.html
530
+ - web/doc/api/core/files/lib/facets/core/string/to_date_rb.html
531
+ - web/doc/api/core/files/lib/facets/core/string/chars_rb.html
532
+ - web/doc/api/core/files/lib/facets/core/string/pot_rb.html
533
+ - web/doc/api/core/files/lib/facets/core/string/starts_with_rb.html
534
+ - web/doc/api/core/files/lib/facets/core/string/first_char_rb.html
535
+ - web/doc/api/core/files/lib/facets/core/string/capitalized_rb.html
536
+ - web/doc/api/core/files/lib/facets/core/string/bytes_rb.html
537
+ - web/doc/api/core/files/lib/facets/core/string/basename_rb.html
538
+ - web/doc/api/core/files/lib/facets/core/string/downcase_rb.html
539
+ - web/doc/api/core/files/lib/facets/core/string/succ_rb.html
540
+ - web/doc/api/core/files/lib/facets/core/string/probability_rb.html
541
+ - web/doc/api/core/files/lib/facets/core/string/cmp_rb.html
542
+ - web/doc/api/core/files/lib/facets/core/string/whitespace_rb.html
543
+ - web/doc/api/core/files/lib/facets/core/string/at_rand_rb.html
544
+ - web/doc/api/core/files/lib/facets/core/string/first_rb.html
545
+ - web/doc/api/core/files/lib/facets/core/string/fold_rb.html
546
+ - web/doc/api/core/files/lib/facets/core/string/camelize_rb.html
547
+ - web/doc/api/core/files/lib/facets/core/string/unbracket_rb.html
548
+ - web/doc/api/core/files/lib/facets/core/string/range_rb.html
549
+ - web/doc/api/core/files/lib/facets/core/string/to_a_rb.html
550
+ - web/doc/api/core/files/lib/facets/core/string/to_b_rb.html
551
+ - web/doc/api/core/files/lib/facets/core/string/to_re_rb.html
552
+ - web/doc/api/core/files/lib/facets/core/string/last_char_rb.html
553
+ - web/doc/api/core/files/lib/facets/core/string/to_rx_rb.html
554
+ - web/doc/api/core/files/lib/facets/core/string/line_wrap_rb.html
555
+ - web/doc/api/core/files/lib/facets/core/string/tabto_rb.html
556
+ - web/doc/api/core/files/lib/facets/core/string/align_center_rb.html
557
+ - web/doc/api/core/files/lib/facets/core/string/words_rb.html
558
+ - web/doc/api/core/files/lib/facets/core/string/indent_rb.html
559
+ - web/doc/api/core/files/lib/facets/core/string/align_right_rb.html
560
+ - web/doc/api/core/files/lib/facets/core/string/upcase_rb.html
561
+ - web/doc/api/core/files/lib/facets/core/string/format_rb.html
562
+ - web/doc/api/core/files/lib/facets/core/string/to_const_rb.html
563
+ - web/doc/api/core/files/lib/facets/core/string/pop_rb.html
564
+ - web/doc/api/core/files/lib/facets/core/string/align_left_rb.html
565
+ - web/doc/api/core/files/lib/facets/core/string/tab_rb.html
566
+ - web/doc/api/core/files/lib/facets/core/string/range_of_line_rb.html
567
+ - web/doc/api/core/files/lib/facets/core/string/frequency_rb.html
568
+ - web/doc/api/core/files/lib/facets/core/string/lowercase_rb.html
569
+ - web/doc/api/core/files/lib/facets/core/string/to_time_rb.html
570
+ - web/doc/api/core/files/lib/facets/core/string/ordinal_rb.html
571
+ - web/doc/api/core/files/lib/facets/core/string/shuffle_rb.html
572
+ - web/doc/api/core/files/lib/facets/core/string/each_char_rb.html
573
+ - web/doc/api/core/files/lib/facets/core/string/unshift_rb.html
574
+ - web/doc/api/core/files/lib/facets/core/string/each_word_rb.html
575
+ - web/doc/api/core/files/lib/facets/core/string/bracket_rb.html
576
+ - web/doc/api/core/files/lib/facets/core/string/index_all_rb.html
577
+ - web/doc/api/core/files/lib/facets/core/string/quote_rb.html
578
+ - web/doc/api/core/files/lib/facets/core/string/regesc_rb.html
579
+ - web/doc/api/core/files/lib/facets/core/string/soundex_rb.html
580
+ - web/doc/api/core/files/lib/facets/core/string/range_all_rb.html
581
+ - web/doc/api/core/files/lib/facets/core/string/mscan_rb.html
582
+ - web/doc/api/core/files/lib/facets/core/string/ends_with_rb.html
583
+ - web/doc/api/core/files/lib/facets/core/string/shatter_rb.html
584
+ - web/doc/api/core/files/lib/facets/core/string/underscore_rb.html
585
+ - web/doc/api/core/files/lib/facets/core/string/natcmp_rb.html
586
+ - web/doc/api/core/files/lib/facets/core/string/lines_rb.html
587
+ - web/doc/api/core/files/lib/facets/core/string/modulize_rb.html
588
+ - web/doc/api/core/files/lib/facets/core/string/pathize_rb.html
589
+ - web/doc/api/core/files/lib/facets/core/string/methodize_rb.html
590
+ - web/doc/api/core/files/lib/facets/core/string/shell_escape_rb.html
591
+ - web/doc/api/core/files/lib/facets/core/string/self
592
+ - web/doc/api/core/files/lib/facets/core/string/self/patterns_rb.html
593
+ - web/doc/api/core/files/lib/facets/core/string/self/rand_letter_rb.html
594
+ - web/doc/api/core/files/lib/facets/core/string/self/random_rb.html
595
+ - web/doc/api/core/files/lib/facets/core/string/self/format_rb.html
596
+ - web/doc/api/core/files/lib/facets/core/string/self/interpolate_rb.html
597
+ - web/doc/api/core/files/lib/facets/core/symbol/camelcase_rb.html
598
+ - web/doc/api/core/files/lib/facets/core/symbol/to_proc_rb.html
599
+ - web/doc/api/core/files/lib/facets/core/symbol/capitalize_rb.html
600
+ - web/doc/api/core/files/lib/facets/core/symbol/capitalized_rb.html
601
+ - web/doc/api/core/files/lib/facets/core/symbol/downcase_rb.html
602
+ - web/doc/api/core/files/lib/facets/core/symbol/succ_rb.html
603
+ - web/doc/api/core/files/lib/facets/core/symbol/camelize_rb.html
604
+ - web/doc/api/core/files/lib/facets/core/symbol/upcase_rb.html
605
+ - web/doc/api/core/files/lib/facets/core/symbol/not_rb.html
606
+ - web/doc/api/core/files/lib/facets/core/symbol/pad_rb.html
607
+ - web/doc/api/core/files/lib/facets/core/symbol/to_const_rb.html
608
+ - web/doc/api/core/files/lib/facets/core/symbol/underscore_rb.html
609
+ - web/doc/api/core/files/lib/facets/core/symbol/to_str_rb.html
610
+ - web/doc/api/core/files/lib/facets/core/time/change_rb.html
611
+ - web/doc/api/core/files/lib/facets/core/time/to_date_rb.html
612
+ - web/doc/api/core/files/lib/facets/core/time/to_s_rb.html
613
+ - web/doc/api/core/files/lib/facets/core/time/stamp_rb.html
614
+ - web/doc/api/core/files/lib/facets/core/time/to_time_rb.html
615
+ - web/doc/api/core/files/lib/facets/core/time/elapse_rb.html
616
+ - web/doc/api/core/files/lib/facets/core/time/self
617
+ - web/doc/api/core/files/lib/facets/core/time/self/days_extrema_rb.html
618
+ - web/doc/api/core/files/lib/facets/core/time/self/stamp_rb.html
619
+ - web/doc/api/core/files/lib/facets/core/unboundmethod/name_rb.html
620
+ - web/doc/api/core/files/lib/facets/core/gem/self
621
+ - web/doc/api/core/files/lib/facets/core/gem/self/active_rb.html
622
+ - web/doc/api/core/files/lib/facets/core/gem/self/gemspec_rb.html
623
+ - web/doc/api/core/files/lib/facets/core/gem/self/gempath_rb.html
624
+ - web/doc/api/core/files/lib/facets/core/gem/self/gemdir_rb.html
625
+ - web/doc/api/core/classes/Range.html
626
+ - web/doc/api/core/classes/NackClass.html
627
+ - web/doc/api/core/classes/Integer.html
628
+ - web/doc/api/core/classes/Time.html
629
+ - web/doc/api/core/classes/Symbol.html
630
+ - web/doc/api/core/classes/Regexp.html
631
+ - web/doc/api/core/classes/ScriptBug.html
632
+ - web/doc/api/core/classes/Dir.html
633
+ - web/doc/api/core/classes/FalseClass.html
634
+ - web/doc/api/core/classes/Hash.html
635
+ - web/doc/api/core/classes/Array.html
636
+ - web/doc/api/core/classes/Proc.html
637
+ - web/doc/api/core/classes/MatchData.html
638
+ - web/doc/api/core/classes/Module.html
639
+ - web/doc/api/core/classes/Continuation.html
640
+ - web/doc/api/core/classes/Numeric.html
641
+ - web/doc/api/core/classes/Float.html
642
+ - web/doc/api/core/classes/Class.html
643
+ - web/doc/api/core/classes/NilClass.html
644
+ - web/doc/api/core/classes/Date.html
645
+ - web/doc/api/core/classes/Pathname.html
646
+ - web/doc/api/core/classes/OpenStruct.html
647
+ - web/doc/api/core/classes/Logger.html
648
+ - web/doc/api/core/classes/Object.html
649
+ - web/doc/api/core/classes/Binding.html
650
+ - web/doc/api/core/classes/UnboundMethod.html
651
+ - web/doc/api/core/classes/TrueClass.html
652
+ - web/doc/api/core/classes/File.html
653
+ - web/doc/api/core/classes/String.html
654
+ - web/doc/api/core/classes/Kernal.html
655
+ - web/doc/api/core/classes/FileUtils.html
656
+ - web/doc/api/core/classes/Gem.html
657
+ - web/doc/api/core/classes/Kernel.html
658
+ - web/doc/api/core/classes/Enumerable.html
659
+ - web/doc/api/core/classes/Comparable.html
660
+ - web/doc/api/more/created.rid
661
+ - web/doc/api/more/rdoc-style.css
662
+ - web/doc/api/more/files
663
+ - web/doc/api/more/classes
664
+ - web/doc/api/more/fr_file_index.html
665
+ - web/doc/api/more/fr_class_index.html
666
+ - web/doc/api/more/fr_method_index.html
667
+ - web/doc/api/more/index.html
668
+ - web/doc/api/more/files/COPYING.html
669
+ - web/doc/api/more/files/README.html
670
+ - web/doc/api/more/files/WARNING.html
671
+ - web/doc/api/more/files/AUTHORS.html
672
+ - web/doc/api/more/files/lib
673
+ - web/doc/api/more/files/lib/facets
674
+ - web/doc/api/more/files/lib/facets/more
675
+ - web/doc/api/more/files/lib/facets/more/annotation_rb.html
676
+ - web/doc/api/more/files/lib/facets/more/ansicode_rb.html
677
+ - web/doc/api/more/files/lib/facets/more/association_rb.html
678
+ - web/doc/api/more/files/lib/facets/more/basicobject_rb.html
679
+ - web/doc/api/more/files/lib/facets/more/bbcode_rb.html
680
+ - web/doc/api/more/files/lib/facets/more/binaryreader_rb.html
681
+ - web/doc/api/more/files/lib/facets/more/bitmask_rb.html
682
+ - web/doc/api/more/files/lib/facets/more/classinherit_rb.html
683
+ - web/doc/api/more/files/lib/facets/more/classmethods_rb.html
684
+ - web/doc/api/more/files/lib/facets/more/cloneable_rb.html
685
+ - web/doc/api/more/files/lib/facets/more/consoleapp_rb.html
686
+ - web/doc/api/more/files/lib/facets/more/coroutine_rb.html
687
+ - web/doc/api/more/files/lib/facets/more/crypt_rb.html
688
+ - web/doc/api/more/files/lib/facets/more/dictionary_rb.html
689
+ - web/doc/api/more/files/lib/facets/more/downloader_rb.html
690
+ - web/doc/api/more/files/lib/facets/more/ormsupport_rb.html
691
+ - web/doc/api/more/files/lib/facets/more/multipliers_rb.html
692
+ - web/doc/api/more/files/lib/facets/more/bytes_rb.html
693
+ - web/doc/api/more/files/lib/facets/more/enumerablepass_rb.html
694
+ - web/doc/api/more/files/lib/facets/more/expirable_rb.html
695
+ - web/doc/api/more/files/lib/facets/more/floatstring_rb.html
696
+ - web/doc/api/more/files/lib/facets/more/functor_rb.html
697
+ - web/doc/api/more/files/lib/facets/more/heap_rb.html
698
+ - web/doc/api/more/files/lib/facets/more/inheritor_rb.html
699
+ - web/doc/api/more/files/lib/facets/more/interval_rb.html
700
+ - web/doc/api/more/files/lib/facets/more/ioredirect_rb.html
701
+ - web/doc/api/more/files/lib/facets/more/lisp_format_rb.html
702
+ - web/doc/api/more/files/lib/facets/more/lisp_rb.html
703
+ - web/doc/api/more/files/lib/facets/more/lrucache_rb.html
704
+ - web/doc/api/more/files/lib/facets/more/mathconstants_rb.html
705
+ - web/doc/api/more/files/lib/facets/more/methodprobe_rb.html
706
+ - web/doc/api/more/files/lib/facets/more/mock_rb.html
707
+ - web/doc/api/more/files/lib/facets/more/multiton_rb.html
708
+ - web/doc/api/more/files/lib/facets/more/nackclass_rb.html
709
+ - web/doc/api/more/files/lib/facets/more/nilcomparable_rb.html
710
+ - web/doc/api/more/files/lib/facets/more/nullclass_rb.html
711
+ - web/doc/api/more/files/lib/facets/more/one_rb.html
712
+ - web/doc/api/more/files/lib/facets/more/openobject_rb.html
713
+ - web/doc/api/more/files/lib/facets/more/paramix_rb.html
714
+ - web/doc/api/more/files/lib/facets/more/pool_rb.html
715
+ - web/doc/api/more/files/lib/facets/more/preinitialize_rb.html
716
+ - web/doc/api/more/files/lib/facets/more/progressbar_rb.html
717
+ - web/doc/api/more/files/lib/facets/more/quaternion_rb.html
718
+ - web/doc/api/more/files/lib/facets/more/reference_rb.html
719
+ - web/doc/api/more/files/lib/facets/more/semaphore_rb.html
720
+ - web/doc/api/more/files/lib/facets/more/snapshot_rb.html
721
+ - web/doc/api/more/files/lib/facets/more/stateparser_rb.html
722
+ - web/doc/api/more/files/lib/facets/more/statichash_rb.html
723
+ - web/doc/api/more/files/lib/facets/more/synchash_rb.html
724
+ - web/doc/api/more/files/lib/facets/more/syncarray_rb.html
725
+ - web/doc/api/more/files/lib/facets/more/system_rb.html
726
+ - web/doc/api/more/files/lib/facets/more/yamlstruct_rb.html
727
+ - web/doc/api/more/files/lib/facets/more/uninheritable_rb.html
728
+ - web/doc/api/more/files/lib/facets/more/tuple_rb.html
729
+ - web/doc/api/more/files/lib/facets/more/tracepoint_rb.html
730
+ - web/doc/api/more/files/lib/facets/more/timer_rb.html
731
+ - web/doc/api/more/files/lib/facets/more/tagiterator_rb.html
732
+ - web/doc/api/more/files/lib/facets/more/units_rb.html
733
+ - web/doc/api/more/files/lib/facets/more/times_rb.html
734
+ - web/doc/api/more/files/lib/facets/more/rtals_rb.html
735
+ - web/doc/api/more/files/lib/facets/more/typecast_rb.html
736
+ - web/doc/api/more/files/lib/facets/more/promoteself_rb.html
737
+ - web/doc/api/more/files/lib/facets/more/blankslate_rb.html
738
+ - web/doc/api/more/files/lib/facets/more/filelist_rb.html
739
+ - web/doc/api/more/files/lib/facets/more/orderedhash_rb.html
740
+ - web/doc/api/more/files/lib/facets/more/pathlist_rb.html
741
+ - web/doc/api/more/files/lib/facets/more/overload_rb.html
742
+ - web/doc/api/more/files/lib/facets/more/aspects_rb.html
743
+ - web/doc/api/more/files/lib/facets/more/elementor_rb.html
744
+ - web/doc/api/more/files/lib/facets/more/json_rb.html
745
+ - web/doc/api/more/files/lib/facets/more/xoxo_rb.html
746
+ - web/doc/api/more/files/lib/facets/more/recorder_rb.html
747
+ - web/doc/api/more/files/lib/facets/more/rexmlbuilder_rb.html
748
+ - web/doc/api/more/files/lib/facets/more/xmlhelper_rb.html
749
+ - web/doc/api/more/files/lib/facets/more/builderobject_rb.html
750
+ - web/doc/api/more/files/lib/facets/more/xmlbuilder_rb.html
751
+ - web/doc/api/more/files/lib/facets/more/htmlbuilder_rb.html
752
+ - web/doc/api/more/files/lib/facets/more/htmlhelper_rb.html
753
+ - web/doc/api/more/files/lib/facets/more/lazy_rb.html
754
+ - web/doc/api/more/files/lib/facets/more/taskable_rb.html
755
+ - web/doc/api/more/files/lib/facets/more/opencascade_rb.html
756
+ - web/doc/api/more/files/lib/facets/more/cookie_rb.html
757
+ - web/doc/api/more/files/lib/facets/more/hashbuilder_rb.html
758
+ - web/doc/api/more/files/lib/facets/more/httpaccess_rb.html
759
+ - web/doc/api/more/files/lib/facets/more/http_rb.html
760
+ - web/doc/api/more/files/lib/facets/more/pqueue_rb.html
761
+ - web/doc/api/more/files/lib/facets/more/annattr_rb.html
762
+ - web/doc/api/more/classes/IORedirect.html
763
+ - web/doc/api/more/classes/Method.html
764
+ - web/doc/api/more/classes/Method
765
+ - web/doc/api/more/classes/BasicObject.html
766
+ - web/doc/api/more/classes/BasicObject
767
+ - web/doc/api/more/classes/FloatString.html
768
+ - web/doc/api/more/classes/SSLSocketWrap.html
769
+ - web/doc/api/more/classes/Client.html
770
+ - web/doc/api/more/classes/Mock.html
771
+ - web/doc/api/more/classes/StateParser.html
772
+ - web/doc/api/more/classes/StateParser
773
+ - web/doc/api/more/classes/SyncHash.html
774
+ - web/doc/api/more/classes/SyncHash
775
+ - web/doc/api/more/classes/Struct.html
776
+ - web/doc/api/more/classes/Time.html
777
+ - web/doc/api/more/classes/Integer.html
778
+ - web/doc/api/more/classes/SyncArray.html
779
+ - web/doc/api/more/classes/FileList.html
780
+ - web/doc/api/more/classes/Snapshot.html
781
+ - web/doc/api/more/classes/Array.html
782
+ - web/doc/api/more/classes/Downloader.html
783
+ - web/doc/api/more/classes/Downloader
784
+ - web/doc/api/more/classes/YAMLStruct.html
785
+ - web/doc/api/more/classes/Dictionary.html
786
+ - web/doc/api/more/classes/SimpleStringIO.html
787
+ - web/doc/api/more/classes/Annotation.html
788
+ - web/doc/api/more/classes/Class.html
789
+ - web/doc/api/more/classes/FalseClass.html
790
+ - web/doc/api/more/classes/Recorder.html
791
+ - web/doc/api/more/classes/ValueHolder.html
792
+ - web/doc/api/more/classes/PathList.html
793
+ - web/doc/api/more/classes/PathList
794
+ - web/doc/api/more/classes/HashBuilder.html
795
+ - web/doc/api/more/classes/Reference.html
796
+ - web/doc/api/more/classes/Semaphore.html
797
+ - web/doc/api/more/classes/BuilderObject.html
798
+ - web/doc/api/more/classes/Functor.html
799
+ - web/doc/api/more/classes/TagIterator.html
800
+ - web/doc/api/more/classes/Hash.html
801
+ - web/doc/api/more/classes/LRUCache.html
802
+ - web/doc/api/more/classes/LRUCache
803
+ - web/doc/api/more/classes/StaticHash.html
804
+ - web/doc/api/more/classes/TrueClass.html
805
+ - web/doc/api/more/classes/Module.html
806
+ - web/doc/api/more/classes/Proc.html
807
+ - web/doc/api/more/classes/OpenObject.html
808
+ - web/doc/api/more/classes/Symbol.html
809
+ - web/doc/api/more/classes/HTMLBuilder.html
810
+ - web/doc/api/more/classes/REXMLBuilder.html
811
+ - web/doc/api/more/classes/REXMLBuilder
812
+ - web/doc/api/more/classes/NullClass.html
813
+ - web/doc/api/more/classes/StringIO.html
814
+ - web/doc/api/more/classes/Heap.html
815
+ - web/doc/api/more/classes/Heap
816
+ - web/doc/api/more/classes/WebAgent.html
817
+ - web/doc/api/more/classes/WebAgent
818
+ - web/doc/api/more/classes/Object.html
819
+ - web/doc/api/more/classes/InvalidNackError.html
820
+ - web/doc/api/more/classes/Coroutine.html
821
+ - web/doc/api/more/classes/Quaternion.html
822
+ - web/doc/api/more/classes/NackClass.html
823
+ - web/doc/api/more/classes/DebugSocket.html
824
+ - web/doc/api/more/classes/XMLBuilder.html
825
+ - web/doc/api/more/classes/NilClass.html
826
+ - web/doc/api/more/classes/Pool.html
827
+ - web/doc/api/more/classes/Numeric.html
828
+ - web/doc/api/more/classes/Association.html
829
+ - web/doc/api/more/classes/TracePoint.html
830
+ - web/doc/api/more/classes/Task.html
831
+ - web/doc/api/more/classes/Task
832
+ - web/doc/api/more/classes/StateMachine.html
833
+ - web/doc/api/more/classes/Timer.html
834
+ - web/doc/api/more/classes/Timer
835
+ - web/doc/api/more/classes/Float.html
836
+ - web/doc/api/more/classes/Aspect.html
837
+ - web/doc/api/more/classes/Interval.html
838
+ - web/doc/api/more/classes/OpenCascade.html
839
+ - web/doc/api/more/classes/Tuple.html
840
+ - web/doc/api/more/classes/String.html
841
+ - web/doc/api/more/classes/PQueue.html
842
+ - web/doc/api/more/classes/Elementor.html
843
+ - web/doc/api/more/classes/TSort.html
844
+ - web/doc/api/more/classes/Expirable.html
845
+ - web/doc/api/more/classes/JSON.html
846
+ - web/doc/api/more/classes/JSON
847
+ - web/doc/api/more/classes/URI.html
848
+ - web/doc/api/more/classes/Cloneable.html
849
+ - web/doc/api/more/classes/Taskable.html
850
+ - web/doc/api/more/classes/XOXO.html
851
+ - web/doc/api/more/classes/RubyTals.html
852
+ - web/doc/api/more/classes/EnumerablePass.html
853
+ - web/doc/api/more/classes/System.html
854
+ - web/doc/api/more/classes/Multiton.html
855
+ - web/doc/api/more/classes/Lisp.html
856
+ - web/doc/api/more/classes/Lisp
857
+ - web/doc/api/more/classes/BinaryReader.html
858
+ - web/doc/api/more/classes/BinaryReader
859
+ - web/doc/api/more/classes/HTTPAccess.html
860
+ - web/doc/api/more/classes/XMLHelper.html
861
+ - web/doc/api/more/classes/PromoteSelf.html
862
+ - web/doc/api/more/classes/RubyOneLiners.html
863
+ - web/doc/api/more/classes/ORMSupport.html
864
+ - web/doc/api/more/classes/Console.html
865
+ - web/doc/api/more/classes/Console
866
+ - web/doc/api/more/classes/BBCode.html
867
+ - web/doc/api/more/classes/HTMLHelper.html
868
+ - web/doc/api/more/classes/Crypt.html
869
+ - web/doc/api/more/classes/Kernel.html
870
+ - web/doc/api/more/classes/HTTP.html
871
+ - web/doc/api/more/classes/HTTP
872
+ - web/doc/api/more/classes/Units.html
873
+ - web/doc/api/more/classes/Units
874
+ - web/doc/api/more/classes/Enumerable.html
875
+ - web/doc/api/more/classes/Math.html
876
+ - web/doc/api/more/classes/Math
877
+ - web/doc/api/more/classes/Lazy.html
878
+ - web/doc/api/more/classes/Lazy
879
+ - web/doc/api/more/classes/Aspects.html
880
+ - web/doc/api/more/classes/Aspects
881
+ - web/doc/api/more/classes/Uninheritable.html
882
+ - web/doc/api/more/classes/Method/Probe.html
883
+ - web/doc/api/more/classes/BasicObject/Self.html
884
+ - web/doc/api/more/classes/StateParser/Constants.html
885
+ - web/doc/api/more/classes/StateParser/Marker.html
886
+ - web/doc/api/more/classes/StateParser/State.html
887
+ - web/doc/api/more/classes/SyncHash/Inheritor.html
888
+ - web/doc/api/more/classes/SyncHash/Delegator.html
889
+ - web/doc/api/more/classes/Downloader/Checksum.html
890
+ - web/doc/api/more/classes/Downloader/Mirror.html
891
+ - web/doc/api/more/classes/PathList/Finder.html
892
+ - web/doc/api/more/classes/LRUCache/Item.html
893
+ - web/doc/api/more/classes/LRUCache/Sentinel.html
894
+ - web/doc/api/more/classes/REXMLBuilder/REXMLUtil.html
895
+ - web/doc/api/more/classes/Heap/EmptyHeapException.html
896
+ - web/doc/api/more/classes/Heap/Max.html
897
+ - web/doc/api/more/classes/Heap/Min.html
898
+ - web/doc/api/more/classes/WebAgent/CookieUtils.html
899
+ - web/doc/api/more/classes/WebAgent/CookieManager.html
900
+ - web/doc/api/more/classes/WebAgent/CookieManager
901
+ - web/doc/api/more/classes/WebAgent/Cookie.html
902
+ - web/doc/api/more/classes/WebAgent/CookieManager/NoDotError.html
903
+ - web/doc/api/more/classes/WebAgent/CookieManager/SpecialError.html
904
+ - web/doc/api/more/classes/WebAgent/CookieManager/ErrorOverrideOK.html
905
+ - web/doc/api/more/classes/WebAgent/CookieManager/Error.html
906
+ - web/doc/api/more/classes/Task/Graph.html
907
+ - web/doc/api/more/classes/Timer/Dummy.html
908
+ - web/doc/api/more/classes/JSON/Parser.html
909
+ - web/doc/api/more/classes/JSON/State.html
910
+ - web/doc/api/more/classes/Lisp/Format.html
911
+ - web/doc/api/more/classes/Lisp/DottedPair.html
912
+ - web/doc/api/more/classes/BinaryReader/ByteOrder.html
913
+ - web/doc/api/more/classes/Console/ANSICode.html
914
+ - web/doc/api/more/classes/Console/Command.html
915
+ - web/doc/api/more/classes/Console/ProgressBar.html
916
+ - web/doc/api/more/classes/HTTP/Status.html
917
+ - web/doc/api/more/classes/HTTP/Message.html
918
+ - web/doc/api/more/classes/HTTP/Message
919
+ - web/doc/api/more/classes/HTTP/BadResponseError.html
920
+ - web/doc/api/more/classes/HTTP/Error.html
921
+ - web/doc/api/more/classes/HTTP/Message/Body.html
922
+ - web/doc/api/more/classes/HTTP/Message/Headers.html
923
+ - web/doc/api/more/classes/Units/Config.html
924
+ - web/doc/api/more/classes/Units/Converter.html
925
+ - web/doc/api/more/classes/Units/Converter
926
+ - web/doc/api/more/classes/Units/Unit.html
927
+ - web/doc/api/more/classes/Units/Value.html
928
+ - web/doc/api/more/classes/Units/Converter/ExchangeRate.html
929
+ - web/doc/api/more/classes/Units/Converter/ExchangeRate
930
+ - web/doc/api/more/classes/Units/Converter/ExchangeRate/XMethods.html
931
+ - web/doc/api/more/classes/Units/Converter/ExchangeRate/CachedXMethods.html
932
+ - web/doc/api/more/classes/Math/Constants.html
933
+ - web/doc/api/more/classes/Math/Constants
934
+ - web/doc/api/more/classes/Math/Constants/CGS.html
935
+ - web/doc/api/more/classes/Lazy/PromiseSafe.html
936
+ - web/doc/api/more/classes/Lazy/Future.html
937
+ - web/doc/api/more/classes/Lazy/Promise.html
938
+ - web/doc/api/more/classes/Aspects/ClassMethods.html
939
+ - demo/ansicolor
940
+ - demo/io-reactor
941
+ - demo/lisp
942
+ - demo/annotation
943
+ - demo/ansicolor/example.rb
944
+ - demo/ansicolor/cdiff.rb
945
+ - demo/io-reactor/chatserver.rb
946
+ - demo/lisp/game.rb
947
+ - demo/annotation/demo_annotation.rb
457
948
  - lib/facet
458
949
  - lib/facets.rb
459
950
  - lib/facets
@@ -702,6 +1193,7 @@ files:
702
1193
  - lib/facet/enumerable/collect_if.rb
703
1194
  - lib/facet/enumerable/count.rb
704
1195
  - lib/facet/enumerable/map_if.rb
1196
+ - lib/facet/enumerable/mode.rb
705
1197
  - lib/facet/enumerable/self
706
1198
  - lib/facet/enumerable/self/combinations.rb
707
1199
  - lib/facet/enumerable/self/cross.rb
@@ -1212,6 +1704,7 @@ files:
1212
1704
  - lib/facets/core/enumerable/collect_if.rb
1213
1705
  - lib/facets/core/enumerable/count.rb
1214
1706
  - lib/facets/core/enumerable/map_if.rb
1707
+ - lib/facets/core/enumerable/mode.rb
1215
1708
  - lib/facets/core/enumerable/self/combinations.rb
1216
1709
  - lib/facets/core/enumerable/self/cross.rb
1217
1710
  - lib/facets/core/file/self
@@ -1648,39 +2141,522 @@ files:
1648
2141
  - lib/facets/more/http.rb
1649
2142
  - lib/facets/more/pqueue.rb
1650
2143
  - lib/facets/more/annattr.rb
1651
- - demo/ansicolor
1652
- - demo/io-reactor
1653
- - demo/lisp
1654
- - demo/annotation
1655
- - demo/ansicolor/example.rb
1656
- - demo/ansicolor/cdiff.rb
1657
- - demo/io-reactor/chatserver.rb
1658
- - demo/lisp/game.rb
1659
- - demo/annotation/demo_annotation.rb
1660
- - data/facets
1661
- - data/facets/units
1662
- - data/facets/units/si
1663
- - data/facets/units/uk
1664
- - data/facets/units/us
1665
- - data/facets/units/cex.yaml
1666
- - data/facets/units/default.yaml
1667
- - data/facets/units/currency
1668
- - data/facets/units/binary
1669
- - data/facets/units/dump_yaml.rb
1670
- - data/facets/units/uk.yaml
1671
- - data/facets/units/us.yaml
1672
- - data/facets/units/standard.yaml
1673
- - data/facets/units/xmethods
1674
- - data/facets/units/si/derived.yaml
1675
- - data/facets/units/si/extra.yaml
1676
- - data/facets/units/si/base.yaml
1677
- - data/facets/units/uk/base.yaml
1678
- - data/facets/units/us/base.yaml
1679
- - data/facets/units/currency/base.yaml
1680
- - data/facets/units/binary/extra.yaml
1681
- - data/facets/units/binary/base.yaml
1682
- - data/facets/units/xmethods/mapping.yaml
1683
- - data/facets/units/xmethods/cached.yaml
2144
+ - forge/more
2145
+ - forge/README
2146
+ - forge/autorequire.rb
2147
+ - forge/TODO
2148
+ - forge/reference
2149
+ - forge/core/io
2150
+ - forge/core/logger
2151
+ - forge/core/fileutils
2152
+ - forge/core/array
2153
+ - forge/core/kernel
2154
+ - forge/core/module
2155
+ - forge/core/enumerable
2156
+ - forge/core/string
2157
+ - forge/core/binding
2158
+ - forge/core/io/expect.rb
2159
+ - forge/core/logger/clean_logger.rb
2160
+ - forge/core/fileutils/nl_convert.rb
2161
+ - forge/core/array/at_rand.rb
2162
+ - forge/core/array/each_slice.rb
2163
+ - forge/core/array/rand_indexes.rb
2164
+ - forge/core/array/pick_values.rb
2165
+ - forge/core/kernel/message.rb
2166
+ - forge/core/kernel/does.rb
2167
+ - forge/core/kernel/call_line.rb
2168
+ - forge/core/kernel/taint.rb
2169
+ - forge/core/kernel/__clone__.rb
2170
+ - forge/core/kernel/__dup__.rb
2171
+ - forge/core/kernel/query.rb
2172
+ - forge/core/module/attr_xxx.rb
2173
+ - forge/core/module/tc_attr.rb
2174
+ - forge/core/module/sattr_setter.rb
2175
+ - forge/core/module/attr-old.rb
2176
+ - forge/core/module/permissions.rb
2177
+ - forge/core/module/preserved.rb
2178
+ - forge/core/module/sattr_accessor.rb
2179
+ - forge/core/module/attr.rb
2180
+ - forge/core/module/meta_attr.rb
2181
+ - forge/core/module/cast.rb
2182
+ - forge/core/module/sattr_tester.rb
2183
+ - forge/core/module/sattr_reader.rb
2184
+ - forge/core/module/version.rb
2185
+ - forge/core/module/by_regexp.rb
2186
+ - forge/core/module/sattr_writer.rb
2187
+ - forge/core/module/let.rb
2188
+ - forge/core/module/inherit.rb
2189
+ - forge/core/module/class_attribute_accessors.rb
2190
+ - forge/core/module/module_attribute_accessors.rb
2191
+ - forge/core/enumerable/op_fetch.rb
2192
+ - forge/core/string/word_wrap.rb
2193
+ - forge/core/string/op_div.rb
2194
+ - forge/core/string/to_ary.rb
2195
+ - forge/core/string/pred.rb
2196
+ - forge/core/string/op_add.rb
2197
+ - forge/core/binding/delegate-binding.rb
2198
+ - forge/core/binding/delegate.rb
2199
+ - forge/core/binding/class.rb
2200
+ - forge/core/binding/proc.rb
2201
+ - forge/more/type.rb
2202
+ - forge/more/infinity.rb
2203
+ - forge/more/contracts.rb
2204
+ - forge/more/enumtype.rb
2205
+ - forge/more/world.rb
2206
+ - forge/more/timer.rb
2207
+ - forge/more/autoarray.rb
2208
+ - forge/more/ostructable.rb
2209
+ - forge/more/daemon.rb
2210
+ - forge/more/function.rb
2211
+ - forge/more/fixnum_const.rb
2212
+ - forge/more/service.rb
2213
+ - forge/more/ioreactor.rb
2214
+ - forge/more/vars.rb
2215
+ - forge/more/commandrunner.rb
2216
+ - forge/more/pathname.rb
2217
+ - forge/more/knowself.rb
2218
+ - forge/more/datetime.rb
2219
+ - forge/more/codepack.rb
2220
+ - forge/more/rand.rb
2221
+ - forge/more/range.rb
2222
+ - forge/more/detach.rb
2223
+ - forge/more/predicate.rb
2224
+ - forge/more/openproxy.rb
2225
+ - forge/more/version.rb
2226
+ - forge/more/cache.rb
2227
+ - forge/more/must.rb
2228
+ - forge/more/superstruct.rb
2229
+ - forge/more/toplevel.rb
2230
+ - forge/more/class_inheritable_attributes.rb
2231
+ - forge/more/tag.rb
2232
+ - forge/more/hookse.rb
2233
+ - forge/more/print_exception.rb
2234
+ - forge/more/sanitize.rb
2235
+ - forge/more/testfacility.rb
2236
+ - forge/more/indexable.rb
2237
+ - forge/more/pairhash.rb
2238
+ - forge/more/conditionals.rb
2239
+ - forge/more/logger_sing.rb
2240
+ - forge/more/prereq.rb
2241
+ - forge/reference/sys.rb
2242
+ - forge/reference/utils.rb
2243
+ - test/lib
2244
+ - test/FIXTURE
2245
+ - test/lib/facets
2246
+ - test/lib/facets/more
2247
+ - test/lib/facets/core/array
2248
+ - test/lib/facets/core/binding
2249
+ - test/lib/facets/core/class
2250
+ - test/lib/facets/core/comparable
2251
+ - test/lib/facets/core/continuation
2252
+ - test/lib/facets/core/date
2253
+ - test/lib/facets/core/dir
2254
+ - test/lib/facets/core/enumerable
2255
+ - test/lib/facets/core/file
2256
+ - test/lib/facets/core/float
2257
+ - test/lib/facets/core/hash
2258
+ - test/lib/facets/core/integer
2259
+ - test/lib/facets/core/kernel
2260
+ - test/lib/facets/core/matchdata
2261
+ - test/lib/facets/core/module
2262
+ - test/lib/facets/core/nilclass
2263
+ - test/lib/facets/core/numeric
2264
+ - test/lib/facets/core/ostruct
2265
+ - test/lib/facets/core/proc
2266
+ - test/lib/facets/core/range
2267
+ - test/lib/facets/core/regexp
2268
+ - test/lib/facets/core/string
2269
+ - test/lib/facets/core/symbol
2270
+ - test/lib/facets/core/time
2271
+ - test/lib/facets/core/array/test_pull.rb
2272
+ - test/lib/facets/core/array/test_merge.rb
2273
+ - test/lib/facets/core/array/test_select.rb
2274
+ - test/lib/facets/core/array/test_rand_index.rb
2275
+ - test/lib/facets/core/array/test_rand_subset.rb
2276
+ - test/lib/facets/core/array/test_delete_unless.rb
2277
+ - test/lib/facets/core/array/test_delete_values.rb
2278
+ - test/lib/facets/core/array/test_last_index.rb
2279
+ - test/lib/facets/core/array/test_thru.rb
2280
+ - test/lib/facets/core/array/test_at_rand.rb
2281
+ - test/lib/facets/core/array/test_first.rb
2282
+ - test/lib/facets/core/array/test_range.rb
2283
+ - test/lib/facets/core/array/test_to_b.rb
2284
+ - test/lib/facets/core/array/test_to_h.rb
2285
+ - test/lib/facets/core/array/test_mid.rb
2286
+ - test/lib/facets/core/array/test_delete_values_at.rb
2287
+ - test/lib/facets/core/array/test_head.rb
2288
+ - test/lib/facets/core/array/test_pos.rb
2289
+ - test/lib/facets/core/array/test_rotate.rb
2290
+ - test/lib/facets/core/array/test_shuffle.rb
2291
+ - test/lib/facets/core/array/test_op_store.rb
2292
+ - test/lib/facets/core/array/test_op_fetch.rb
2293
+ - test/lib/facets/core/array/test_middle.rb
2294
+ - test/lib/facets/core/array/test_pick.rb
2295
+ - test/lib/facets/core/array/test_to_hash.rb
2296
+ - test/lib/facets/core/array/test_pot.rb
2297
+ - test/lib/facets/core/binding/test_call_stack.rb
2298
+ - test/lib/facets/core/binding/test_self.rb
2299
+ - test/lib/facets/core/binding/test___LINE__.rb
2300
+ - test/lib/facets/core/binding/test_eval.rb
2301
+ - test/lib/facets/core/binding/test_method_name.rb
2302
+ - test/lib/facets/core/binding/test_called.rb
2303
+ - test/lib/facets/core/binding/test_caller.rb
2304
+ - test/lib/facets/core/binding/test_defined.rb
2305
+ - test/lib/facets/core/binding/test_op_store.rb
2306
+ - test/lib/facets/core/binding/test_op_fetch.rb
2307
+ - test/lib/facets/core/binding/test_local_variables.rb
2308
+ - test/lib/facets/core/binding/self
2309
+ - test/lib/facets/core/binding/self/test_of_caller.rb
2310
+ - test/lib/facets/core/class/test_descendents.rb
2311
+ - test/lib/facets/core/class/test_remove_descendents.rb
2312
+ - test/lib/facets/core/class/test_unix_path.rb
2313
+ - test/lib/facets/core/class/test_method_name.rb
2314
+ - test/lib/facets/core/class/test_cattr.rb
2315
+ - test/lib/facets/core/comparable/test_cmp.rb
2316
+ - test/lib/facets/core/comparable/test_at_least.rb
2317
+ - test/lib/facets/core/comparable/test_clip.rb
2318
+ - test/lib/facets/core/continuation/self
2319
+ - test/lib/facets/core/continuation/self/test_create.rb
2320
+ - test/lib/facets/core/date/test_to_date.rb
2321
+ - test/lib/facets/core/date/test_days_in_month.rb
2322
+ - test/lib/facets/core/date/test_to_s.rb
2323
+ - test/lib/facets/core/date/test_stamp.rb
2324
+ - test/lib/facets/core/date/test_to_time.rb
2325
+ - test/lib/facets/core/date/test_days_of_month.rb
2326
+ - test/lib/facets/core/dir/self
2327
+ - test/lib/facets/core/dir/self/test_ancestor.rb
2328
+ - test/lib/facets/core/dir/self/test_ascend.rb
2329
+ - test/lib/facets/core/enumerable/test_find_collisions.rb
2330
+ - test/lib/facets/core/enumerable/test_each_unique_pair.rb
2331
+ - test/lib/facets/core/enumerable/test_ew.rb
2332
+ - test/lib/facets/core/enumerable/test_graph.rb
2333
+ - test/lib/facets/core/enumerable/test_filter_collect.rb
2334
+ - test/lib/facets/core/enumerable/test_ideal_entropy.rb
2335
+ - test/lib/facets/core/enumerable/test_partition_by.rb
2336
+ - test/lib/facets/core/enumerable/test_probability.rb
2337
+ - test/lib/facets/core/enumerable/test_collect_with_index.rb
2338
+ - test/lib/facets/core/enumerable/test_to_h.rb
2339
+ - test/lib/facets/core/enumerable/test_each_pair.rb
2340
+ - test/lib/facets/core/enumerable/test_every.rb
2341
+ - test/lib/facets/core/enumerable/test_compact_collect.rb
2342
+ - test/lib/facets/core/enumerable/test_one.rb
2343
+ - test/lib/facets/core/enumerable/test_none.rb
2344
+ - test/lib/facets/core/enumerable/test_op_pow.rb
2345
+ - test/lib/facets/core/enumerable/test_frequency.rb
2346
+ - test/lib/facets/core/enumerable/test_permute.rb
2347
+ - test/lib/facets/core/enumerable/test_occur.rb
2348
+ - test/lib/facets/core/enumerable/test_commonality.rb
2349
+ - test/lib/facets/core/enumerable/test_each_combination.rb
2350
+ - test/lib/facets/core/enumerable/test_each_slice.rb
2351
+ - test/lib/facets/core/enumerable/test_entropy.rb
2352
+ - test/lib/facets/core/enumerable/test_uniq_by.rb
2353
+ - test/lib/facets/core/enumerable/test_cross.rb
2354
+ - test/lib/facets/core/enumerable/test_count.rb
2355
+ - test/lib/facets/core/enumerable/self
2356
+ - test/lib/facets/core/enumerable/self/test_combinations.rb
2357
+ - test/lib/facets/core/enumerable/self/test_cross.rb
2358
+ - test/lib/facets/core/file/self
2359
+ - test/lib/facets/core/file/self/test_open_as_string.rb
2360
+ - test/lib/facets/core/file/self/test_read_list.rb
2361
+ - test/lib/facets/core/file/self/test_sanitize.rb
2362
+ - test/lib/facets/core/file/self/test_split_all.rb
2363
+ - test/lib/facets/core/file/self/test_create.rb
2364
+ - test/lib/facets/core/float/test_round_at.rb
2365
+ - test/lib/facets/core/float/test_round_to.rb
2366
+ - test/lib/facets/core/hash/test_collate.rb
2367
+ - test/lib/facets/core/hash/test_assert_has_keys.rb
2368
+ - test/lib/facets/core/hash/test_each_with_key.rb
2369
+ - test/lib/facets/core/hash/test_at.rb
2370
+ - test/lib/facets/core/hash/test_each.rb
2371
+ - test/lib/facets/core/hash/test_each_with_index.rb
2372
+ - test/lib/facets/core/hash/test_graph.rb
2373
+ - test/lib/facets/core/hash/test_to_ostruct.rb
2374
+ - test/lib/facets/core/hash/test_update_values.rb
2375
+ - test/lib/facets/core/hash/test_inverse.rb
2376
+ - test/lib/facets/core/hash/test_rand_value.rb
2377
+ - test/lib/facets/core/hash/test_assert_has_only_keys.rb
2378
+ - test/lib/facets/core/hash/test_keys_to_sym.rb
2379
+ - test/lib/facets/core/hash/test_has_only_keys.rb
2380
+ - test/lib/facets/core/hash/test_replace_each.rb
2381
+ - test/lib/facets/core/hash/test_swap.rb
2382
+ - test/lib/facets/core/hash/test_rand_key.rb
2383
+ - test/lib/facets/core/hash/test_to_h.rb
2384
+ - test/lib/facets/core/hash/test_slice.rb
2385
+ - test/lib/facets/core/hash/test_traverse.rb
2386
+ - test/lib/facets/core/hash/test_shuffle.rb
2387
+ - test/lib/facets/core/hash/test_alias.rb
2388
+ - test/lib/facets/core/hash/test_op_fetch.rb
2389
+ - test/lib/facets/core/hash/test_has_keys.rb
2390
+ - test/lib/facets/core/hash/test_to_ostruct_recurse.rb
2391
+ - test/lib/facets/core/hash/test_swapkey.rb
2392
+ - test/lib/facets/core/hash/test_keys_to_s.rb
2393
+ - test/lib/facets/core/hash/test_weave.rb
2394
+ - test/lib/facets/core/hash/test_op_lshift.rb
2395
+ - test/lib/facets/core/hash/test_update_keys.rb
2396
+ - test/lib/facets/core/hash/test_rand_pair.rb
2397
+ - test/lib/facets/core/hash/test_update_each.rb
2398
+ - test/lib/facets/core/hash/self
2399
+ - test/lib/facets/core/hash/self/test_zipnew.rb
2400
+ - test/lib/facets/core/integer/test_multiple.rb
2401
+ - test/lib/facets/core/integer/test_times_collect.rb
2402
+ - test/lib/facets/core/integer/test_factorial.rb
2403
+ - test/lib/facets/core/integer/test_ordinal.rb
2404
+ - test/lib/facets/core/kernel/test_call_stack.rb
2405
+ - test/lib/facets/core/kernel/test_get_by_id.rb
2406
+ - test/lib/facets/core/kernel/test_constant.rb
2407
+ - test/lib/facets/core/kernel/test_copy.rb
2408
+ - test/lib/facets/core/kernel/test_demo.rb
2409
+ - test/lib/facets/core/kernel/test_resc.rb
2410
+ - test/lib/facets/core/kernel/test_set_with.rb
2411
+ - test/lib/facets/core/kernel/test_require_all.rb
2412
+ - test/lib/facets/core/kernel/test_as.rb
2413
+ - test/lib/facets/core/kernel/test_fn.rb
2414
+ - test/lib/facets/core/kernel/test_in.rb
2415
+ - test/lib/facets/core/kernel/test_to_bool.rb
2416
+ - test/lib/facets/core/kernel/test_require_esc.rb
2417
+ - test/lib/facets/core/kernel/test_singleton.rb
2418
+ - test/lib/facets/core/kernel/test_methods.rb
2419
+ - test/lib/facets/core/kernel/test_assign_from.rb
2420
+ - test/lib/facets/core/kernel/test___class__.rb
2421
+ - test/lib/facets/core/kernel/test_send_as.rb
2422
+ - test/lib/facets/core/kernel/test_this.rb
2423
+ - test/lib/facets/core/kernel/test_bug.rb
2424
+ - test/lib/facets/core/kernel/test_generate_method_name.rb
2425
+ - test/lib/facets/core/kernel/test_to_b.rb
2426
+ - test/lib/facets/core/kernel/test_supermethod.rb
2427
+ - test/lib/facets/core/kernel/test_maybe.rb
2428
+ - test/lib/facets/core/kernel/test_object_class.rb
2429
+ - test/lib/facets/core/kernel/test_new.rb
2430
+ - test/lib/facets/core/kernel/test_with_accessor.rb
2431
+ - test/lib/facets/core/kernel/test_returning.rb
2432
+ - test/lib/facets/core/kernel/test_here.rb
2433
+ - test/lib/facets/core/kernel/test_called.rb
2434
+ - test/lib/facets/core/kernel/test_metaclass.rb
2435
+ - test/lib/facets/core/kernel/test_assign_with.rb
2436
+ - test/lib/facets/core/kernel/test_val.rb
2437
+ - test/lib/facets/core/kernel/test_uri.rb
2438
+ - test/lib/facets/core/kernel/test_set_from.rb
2439
+ - test/lib/facets/core/kernel/test_object_hexid.rb
2440
+ - test/lib/facets/core/kernel/test_method.rb
2441
+ - test/lib/facets/core/kernel/test_deep_copy.rb
2442
+ - test/lib/facets/core/kernel/test_superior.rb
2443
+ - test/lib/facets/core/kernel/test_bool.rb
2444
+ - test/lib/facets/core/kernel/test_require_facet.rb
2445
+ - test/lib/facets/core/kernel/test_silently.rb
2446
+ - test/lib/facets/core/kernel/test_methodname.rb
2447
+ - test/lib/facets/core/matchdata/test_matchtree.rb
2448
+ - test/lib/facets/core/matchdata/test_match.rb
2449
+ - test/lib/facets/core/module/test_redefine_method.rb
2450
+ - test/lib/facets/core/module/test_redirect_method.rb
2451
+ - test/lib/facets/core/module/test_initializer.rb
2452
+ - test/lib/facets/core/module/test_modspace.rb
2453
+ - test/lib/facets/core/module/test_instance_methods.rb
2454
+ - test/lib/facets/core/module/test_integrate.rb
2455
+ - test/lib/facets/core/module/test_basename.rb
2456
+ - test/lib/facets/core/module/test_generate_instance_method_name.rb
2457
+ - test/lib/facets/core/module/test_redirect.rb
2458
+ - test/lib/facets/core/module/test_shadow_method.rb
2459
+ - test/lib/facets/core/module/test_alias_module_function.rb
2460
+ - test/lib/facets/core/module/test_namespace.rb
2461
+ - test/lib/facets/core/module/test_abstract.rb
2462
+ - test/lib/facets/core/module/test_this.rb
2463
+ - test/lib/facets/core/module/test_nesting.rb
2464
+ - test/lib/facets/core/module/test_wrap_method.rb
2465
+ - test/lib/facets/core/module/test_ancestor.rb
2466
+ - test/lib/facets/core/module/test_include_as.rb
2467
+ - test/lib/facets/core/module/test_rename_method.rb
2468
+ - test/lib/facets/core/module/test_rename.rb
2469
+ - test/lib/facets/core/module/test_dirname.rb
2470
+ - test/lib/facets/core/module/test_remove.rb
2471
+ - test/lib/facets/core/module/test_sort_on.rb
2472
+ - test/lib/facets/core/module/test_nodef.rb
2473
+ - test/lib/facets/core/module/test_equate_on.rb
2474
+ - test/lib/facets/core/module/test_redef.rb
2475
+ - test/lib/facets/core/module/test_clone_using.rb
2476
+ - test/lib/facets/core/module/test_by_name.rb
2477
+ - test/lib/facets/core/module/test_memoize.rb
2478
+ - test/lib/facets/core/module/test_wrap.rb
2479
+ - test/lib/facets/core/module/test_revisal.rb
2480
+ - test/lib/facets/core/module/test_on_included.rb
2481
+ - test/lib/facets/core/module/test_inherit.rb
2482
+ - test/lib/facets/core/nilclass/test_size.rb
2483
+ - test/lib/facets/core/nilclass/test_empty.rb
2484
+ - test/lib/facets/core/nilclass/test_blank.rb
2485
+ - test/lib/facets/core/nilclass/test_to_h.rb
2486
+ - test/lib/facets/core/nilclass/test_op_fetch.rb
2487
+ - test/lib/facets/core/nilclass/test_include.rb
2488
+ - test/lib/facets/core/numeric/test_succ.rb
2489
+ - test/lib/facets/core/numeric/test_to_b.rb
2490
+ - test/lib/facets/core/numeric/test_ceil_multiple.rb
2491
+ - test/lib/facets/core/numeric/test_approx.rb
2492
+ - test/lib/facets/core/ostruct/test___update__.rb
2493
+ - test/lib/facets/core/ostruct/test___merge__.rb
2494
+ - test/lib/facets/core/ostruct/test_op_store.rb
2495
+ - test/lib/facets/core/ostruct/test_op_fetch.rb
2496
+ - test/lib/facets/core/proc/test_to_method.rb
2497
+ - test/lib/facets/core/proc/test_compose.rb
2498
+ - test/lib/facets/core/range/test_within.rb
2499
+ - test/lib/facets/core/range/test_umbrella.rb
2500
+ - test/lib/facets/core/range/test_to_r.rb
2501
+ - test/lib/facets/core/range/test_to_range.rb
2502
+ - test/lib/facets/core/regexp/test_to_regexp.rb
2503
+ - test/lib/facets/core/regexp/test_to_re.rb
2504
+ - test/lib/facets/core/regexp/test_arity.rb
2505
+ - test/lib/facets/core/string/test_push.rb
2506
+ - test/lib/facets/core/string/test_shift.rb
2507
+ - test/lib/facets/core/string/test_dresner.rb
2508
+ - test/lib/facets/core/string/test_word_filter.rb
2509
+ - test/lib/facets/core/string/test_unix_crypt.rb
2510
+ - test/lib/facets/core/string/test_camelcase.rb
2511
+ - test/lib/facets/core/string/test_humanize.rb
2512
+ - test/lib/facets/core/string/test_margin.rb
2513
+ - test/lib/facets/core/string/test_word_wrap.rb
2514
+ - test/lib/facets/core/string/test_last.rb
2515
+ - test/lib/facets/core/string/test_unpack.rb
2516
+ - test/lib/facets/core/string/test_rand_index.rb
2517
+ - test/lib/facets/core/string/test_nchar.rb
2518
+ - test/lib/facets/core/string/test_singular.rb
2519
+ - test/lib/facets/core/string/test_similarity.rb
2520
+ - test/lib/facets/core/string/test_rand_byte.rb
2521
+ - test/lib/facets/core/string/test_to_proc.rb
2522
+ - test/lib/facets/core/string/test_blank.rb
2523
+ - test/lib/facets/core/string/test_demodulize.rb
2524
+ - test/lib/facets/core/string/test_to_date.rb
2525
+ - test/lib/facets/core/string/test_chars.rb
2526
+ - test/lib/facets/core/string/test_pot.rb
2527
+ - test/lib/facets/core/string/test_capitalized.rb
2528
+ - test/lib/facets/core/string/test_basename.rb
2529
+ - test/lib/facets/core/string/test_downcase.rb
2530
+ - test/lib/facets/core/string/test_succ.rb
2531
+ - test/lib/facets/core/string/test_probability.rb
2532
+ - test/lib/facets/core/string/test_cmp.rb
2533
+ - test/lib/facets/core/string/test_whitespace.rb
2534
+ - test/lib/facets/core/string/test_at_rand.rb
2535
+ - test/lib/facets/core/string/test_first.rb
2536
+ - test/lib/facets/core/string/test_fold.rb
2537
+ - test/lib/facets/core/string/test_camelize.rb
2538
+ - test/lib/facets/core/string/test_range.rb
2539
+ - test/lib/facets/core/string/test_to_a.rb
2540
+ - test/lib/facets/core/string/test_to_b.rb
2541
+ - test/lib/facets/core/string/test_to_re.rb
2542
+ - test/lib/facets/core/string/test_line_wrap.rb
2543
+ - test/lib/facets/core/string/test_align_center.rb
2544
+ - test/lib/facets/core/string/test_words.rb
2545
+ - test/lib/facets/core/string/test_indent.rb
2546
+ - test/lib/facets/core/string/test_upcase.rb
2547
+ - test/lib/facets/core/string/test_to_const.rb
2548
+ - test/lib/facets/core/string/test_pop.rb
2549
+ - test/lib/facets/core/string/test_range_of_line.rb
2550
+ - test/lib/facets/core/string/test_frequency.rb
2551
+ - test/lib/facets/core/string/test_lowercase.rb
2552
+ - test/lib/facets/core/string/test_to_time.rb
2553
+ - test/lib/facets/core/string/test_shuffle.rb
2554
+ - test/lib/facets/core/string/test_each_char.rb
2555
+ - test/lib/facets/core/string/test_unshift.rb
2556
+ - test/lib/facets/core/string/test_each_word.rb
2557
+ - test/lib/facets/core/string/test_bracket.rb
2558
+ - test/lib/facets/core/string/test_index_all.rb
2559
+ - test/lib/facets/core/string/test_quote.rb
2560
+ - test/lib/facets/core/string/test_regesc.rb
2561
+ - test/lib/facets/core/string/test_soundex.rb
2562
+ - test/lib/facets/core/string/test_range_all.rb
2563
+ - test/lib/facets/core/string/test_mscan.rb
2564
+ - test/lib/facets/core/string/test_shatter.rb
2565
+ - test/lib/facets/core/string/test_natcmp.rb
2566
+ - test/lib/facets/core/string/test_lines.rb
2567
+ - test/lib/facets/core/string/test_modulize.rb
2568
+ - test/lib/facets/core/string/test_pathize.rb
2569
+ - test/lib/facets/core/string/test_methodize.rb
2570
+ - test/lib/facets/core/string/self
2571
+ - test/lib/facets/core/string/self/test_patterns.rb
2572
+ - test/lib/facets/core/string/self/test_rand_letter.rb
2573
+ - test/lib/facets/core/string/self/test_interpolate.rb
2574
+ - test/lib/facets/core/symbol/test_camelcase.rb
2575
+ - test/lib/facets/core/symbol/test_to_proc.rb
2576
+ - test/lib/facets/core/symbol/test_capitalize.rb
2577
+ - test/lib/facets/core/symbol/test_capitalized.rb
2578
+ - test/lib/facets/core/symbol/test_downcase.rb
2579
+ - test/lib/facets/core/symbol/test_succ.rb
2580
+ - test/lib/facets/core/symbol/test_camelize.rb
2581
+ - test/lib/facets/core/symbol/test_upcase.rb
2582
+ - test/lib/facets/core/symbol/test_not.rb
2583
+ - test/lib/facets/core/symbol/test_pad.rb
2584
+ - test/lib/facets/core/symbol/test_to_const.rb
2585
+ - test/lib/facets/core/symbol/test_underscore.rb
2586
+ - test/lib/facets/core/symbol/test_to_str.rb
2587
+ - test/lib/facets/core/time/test_change.rb
2588
+ - test/lib/facets/core/time/test_to_date.rb
2589
+ - test/lib/facets/core/time/test_to_s.rb
2590
+ - test/lib/facets/core/time/test_stamp.rb
2591
+ - test/lib/facets/core/time/test_to_time.rb
2592
+ - test/lib/facets/core/time/test_elapse.rb
2593
+ - test/lib/facets/more/test_annotation.rb
2594
+ - test/lib/facets/more/test_ansicode.rb
2595
+ - test/lib/facets/more/test_association.rb
2596
+ - test/lib/facets/more/test_basicobject.rb
2597
+ - test/lib/facets/more/test_bbcode.rb
2598
+ - test/lib/facets/more/test_binaryreader.rb
2599
+ - test/lib/facets/more/test_bitmask.rb
2600
+ - test/lib/facets/more/test_classinherit.rb
2601
+ - test/lib/facets/more/test_classmethods.rb
2602
+ - test/lib/facets/more/test_coroutine.rb
2603
+ - test/lib/facets/more/test_crypt.rb
2604
+ - test/lib/facets/more/test_dictionary.rb
2605
+ - test/lib/facets/more/test_multipliers.rb
2606
+ - test/lib/facets/more/test_bytes.rb
2607
+ - test/lib/facets/more/test_enumerablepass.rb
2608
+ - test/lib/facets/more/test_floatstring.rb
2609
+ - test/lib/facets/more/test_functor.rb
2610
+ - test/lib/facets/more/test_inheritor.rb
2611
+ - test/lib/facets/more/test_interval.rb
2612
+ - test/lib/facets/more/test_lisp_format.rb
2613
+ - test/lib/facets/more/test_lisp.rb
2614
+ - test/lib/facets/more/test_lrucache.rb
2615
+ - test/lib/facets/more/test_mathconstants.rb
2616
+ - test/lib/facets/more/test_methodprobe.rb
2617
+ - test/lib/facets/more/test_multiton.rb
2618
+ - test/lib/facets/more/test_nackclass.rb
2619
+ - test/lib/facets/more/test_nilcomparable.rb
2620
+ - test/lib/facets/more/test_openobject.rb
2621
+ - test/lib/facets/more/test_paramix.rb
2622
+ - test/lib/facets/more/test_preinitialize.rb
2623
+ - test/lib/facets/more/test_snapshot.rb
2624
+ - test/lib/facets/more/test_statichash.rb
2625
+ - test/lib/facets/more/test_synchash.rb
2626
+ - test/lib/facets/more/test_syncarray.rb
2627
+ - test/lib/facets/more/test_yamlstruct.rb
2628
+ - test/lib/facets/more/test_uninheritable.rb
2629
+ - test/lib/facets/more/test_tuple.rb
2630
+ - test/lib/facets/more/test_timer.rb
2631
+ - test/lib/facets/more/test_tagiterator.rb
2632
+ - test/lib/facets/more/test_units.rb
2633
+ - test/lib/facets/more/test_times.rb
2634
+ - test/lib/facets/more/test_typecast.rb
2635
+ - test/lib/facets/more/test_promoteself.rb
2636
+ - test/lib/facets/more/test_overload.rb
2637
+ - test/lib/facets/more/test_elementor.rb
2638
+ - test/lib/facets/more/test_json.rb
2639
+ - test/lib/facets/more/test_xoxo.rb
2640
+ - test/lib/facets/more/test_recorder.rb
2641
+ - test/lib/facets/more/test_xmlhelper.rb
2642
+ - test/lib/facets/more/test_xmlbuilder.rb
2643
+ - test/lib/facets/more/test_htmlbuilder.rb
2644
+ - test/lib/facets/more/test_taskable.rb
2645
+ - test/lib/facets/more/test_opencascade.rb
2646
+ - test/lib/facets/more/test_pqueue.rb
2647
+ - test/lib/facets/more/test_annotatedattr.rb
2648
+ - test/lib/facets/more/test_annattr.rb
2649
+ - test/FIXTURE/ls_r
2650
+ - test/FIXTURE/test_file.txt
2651
+ - test/FIXTURE/filelist
2652
+ - test/FIXTURE/test_file2.txt
2653
+ - test/FIXTURE/ls_r/A
2654
+ - test/FIXTURE/ls_r/A.txt
2655
+ - test/FIXTURE/ls_r/A/B
2656
+ - test/FIXTURE/ls_r/A/B.txt
2657
+ - test/FIXTURE/ls_r/A/B/C.txt
2658
+ - test/FIXTURE/filelist/testfile.txt
2659
+ - test/FIXTURE/filelist/testfile2.txt
1684
2660
  test_files: []
1685
2661
 
1686
2662
  rdoc_options: []