facets 1.7.0 → 1.7.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (456) hide show
  1. data/{meta/projectinfo → PROJECT} +1 -3
  2. data/README +114 -47
  3. data/VERSION +1 -0
  4. data/doc/{ChangeLog → CHANGELOG} +30 -0
  5. data/doc/{ChangeLog.pre1.5 → CHANGELOG.1} +0 -0
  6. data/{COPYING → doc/COPYING} +0 -0
  7. data/lib/facet/cache.rb +1 -0
  8. data/lib/facet/doublemetaphone.rb +1 -0
  9. data/lib/facet/enumerable/eachn.rb +1 -0
  10. data/lib/facet/file/self/null.rb +1 -0
  11. data/lib/facet/filesystem.rb +1 -0
  12. data/lib/facet/filetest/self/root.rb +1 -0
  13. data/lib/facet/hash/delete_at.rb +1 -0
  14. data/lib/facet/hash/delete_values.rb +1 -0
  15. data/lib/facet/hash/delete_values_at.rb +1 -0
  16. data/lib/facet/kernel/load_local.rb +1 -0
  17. data/lib/facet/main_as_module.rb +1 -0
  18. data/lib/facet/nilclass/to_path.rb +1 -0
  19. data/lib/facet/symbol/to_s.rb +1 -0
  20. data/lib/facets.rb +1 -0
  21. data/lib/facets/core/array/delete_values_at.rb +2 -0
  22. data/lib/facets/core/array/op_fetch.rb +27 -0
  23. data/lib/facets/core/array/op_store.rb +2 -47
  24. data/lib/facets/core/enumerable/each_by.rb +91 -2
  25. data/lib/facets/core/enumerable/eachn.rb +41 -0
  26. data/lib/facets/core/file/self/null.rb +17 -0
  27. data/lib/facets/core/filetest/self/root.rb +13 -0
  28. data/lib/facets/core/hash/delete_at.rb +10 -0
  29. data/lib/facets/core/hash/delete_values.rb +20 -0
  30. data/lib/facets/core/hash/delete_values_at.rb +24 -0
  31. data/lib/facets/core/hash/each.rb +26 -11
  32. data/lib/facets/core/kernel/load_local.rb +26 -0
  33. data/lib/facets/core/nilclass/to_path.rb +18 -0
  34. data/lib/facets/core/symbol/to_s.rb +10 -0
  35. data/lib/facets/more/association.rb +1 -1
  36. data/lib/facets/more/cache.rb +81 -0
  37. data/lib/facets/more/command.rb +11 -1
  38. data/lib/facets/more/doublemetaphone.rb +371 -0
  39. data/lib/facets/more/filesystem.rb +43 -0
  40. data/lib/facets/more/main_as_module.rb +42 -0
  41. data/lib/facets/more/taskable.rb +89 -212
  42. data/setup.rb +204 -181
  43. data/test/lib/facets/core/array/test_at_rand.rb +1 -1
  44. data/test/lib/facets/core/array/test_delete_unless.rb +1 -1
  45. data/test/lib/facets/core/array/test_delete_values.rb +1 -1
  46. data/test/lib/facets/core/array/test_delete_values_at.rb +1 -1
  47. data/test/lib/facets/core/array/test_first.rb +1 -1
  48. data/test/lib/facets/core/array/test_head.rb +1 -1
  49. data/test/lib/facets/core/array/test_last_index.rb +1 -1
  50. data/test/lib/facets/core/array/test_merge.rb +1 -1
  51. data/test/lib/facets/core/array/test_mid.rb +1 -1
  52. data/test/lib/facets/core/array/test_middle.rb +1 -1
  53. data/test/lib/facets/core/array/test_op_fetch.rb +9 -1
  54. data/test/lib/facets/core/array/test_op_store.rb +1 -1
  55. data/test/lib/facets/core/array/test_pick.rb +1 -1
  56. data/test/lib/facets/core/array/test_pos.rb +1 -1
  57. data/test/lib/facets/core/array/test_pot.rb +1 -1
  58. data/test/lib/facets/core/array/test_pull.rb +1 -1
  59. data/test/lib/facets/core/array/test_rand_index.rb +1 -1
  60. data/test/lib/facets/core/array/test_rand_subset.rb +1 -1
  61. data/test/lib/facets/core/array/test_range.rb +1 -1
  62. data/test/lib/facets/core/array/test_rotate.rb +1 -1
  63. data/test/lib/facets/core/array/test_select.rb +1 -1
  64. data/test/lib/facets/core/array/test_shuffle.rb +1 -1
  65. data/test/lib/facets/core/array/test_thru.rb +1 -1
  66. data/test/lib/facets/core/array/test_to_b.rb +1 -1
  67. data/test/lib/facets/core/array/test_to_h.rb +1 -1
  68. data/test/lib/facets/core/array/test_to_hash.rb +1 -1
  69. data/test/lib/facets/core/binding/self/test_of_caller.rb +1 -1
  70. data/test/lib/facets/core/binding/test___LINE__.rb +1 -1
  71. data/test/lib/facets/core/binding/test_call_stack.rb +1 -1
  72. data/test/lib/facets/core/binding/test_called.rb +1 -1
  73. data/test/lib/facets/core/binding/test_caller.rb +1 -1
  74. data/test/lib/facets/core/binding/test_defined.rb +1 -1
  75. data/test/lib/facets/core/binding/test_eval.rb +1 -1
  76. data/test/lib/facets/core/binding/test_local_variables.rb +1 -1
  77. data/test/lib/facets/core/binding/test_method_name.rb +1 -1
  78. data/test/lib/facets/core/binding/test_op_fetch.rb +1 -1
  79. data/test/lib/facets/core/binding/test_op_store.rb +1 -1
  80. data/test/lib/facets/core/binding/test_self.rb +1 -1
  81. data/test/lib/facets/core/class/test_cattr.rb +1 -1
  82. data/test/lib/facets/core/class/test_descendents.rb +1 -1
  83. data/test/lib/facets/core/class/test_method_name.rb +1 -1
  84. data/test/lib/facets/core/class/test_remove_descendents.rb +1 -1
  85. data/test/lib/facets/core/class/test_unix_path.rb +1 -1
  86. data/test/lib/facets/core/comparable/test_at_least.rb +1 -1
  87. data/test/lib/facets/core/comparable/test_clip.rb +1 -1
  88. data/test/lib/facets/core/comparable/test_cmp.rb +1 -1
  89. data/test/lib/facets/core/continuation/self/test_create.rb +1 -1
  90. data/test/lib/facets/core/date/test_days_in_month.rb +1 -1
  91. data/test/lib/facets/core/date/test_days_of_month.rb +1 -1
  92. data/test/lib/facets/core/date/test_stamp.rb +1 -1
  93. data/test/lib/facets/core/date/test_to_date.rb +1 -1
  94. data/test/lib/facets/core/date/test_to_s.rb +1 -1
  95. data/test/lib/facets/core/date/test_to_time.rb +1 -1
  96. data/test/lib/facets/core/dir/self/test_ancestor.rb +1 -1
  97. data/test/lib/facets/core/dir/self/test_ascend.rb +1 -1
  98. data/test/lib/facets/core/enumerable/self/test_combinations.rb +1 -1
  99. data/test/lib/facets/core/enumerable/self/test_cross.rb +1 -1
  100. data/test/lib/facets/core/enumerable/test_collect_with_index.rb +1 -1
  101. data/test/lib/facets/core/enumerable/test_commonality.rb +1 -1
  102. data/test/lib/facets/core/enumerable/test_compact_collect.rb +1 -1
  103. data/test/lib/facets/core/enumerable/test_count.rb +1 -1
  104. data/test/lib/facets/core/enumerable/test_cross.rb +1 -1
  105. data/test/lib/facets/core/enumerable/test_each_by.rb +71 -0
  106. data/test/lib/facets/core/enumerable/test_each_combination.rb +1 -1
  107. data/test/lib/facets/core/enumerable/test_each_pair.rb +1 -1
  108. data/test/lib/facets/core/enumerable/test_each_unique_pair.rb +1 -1
  109. data/test/lib/facets/core/enumerable/test_eachn.rb +34 -0
  110. data/test/lib/facets/core/enumerable/test_entropy.rb +1 -1
  111. data/test/lib/facets/core/enumerable/test_every.rb +1 -1
  112. data/test/lib/facets/core/enumerable/test_ew.rb +1 -1
  113. data/test/lib/facets/core/enumerable/test_filter_collect.rb +1 -1
  114. data/test/lib/facets/core/enumerable/test_find_collisions.rb +1 -1
  115. data/test/lib/facets/core/enumerable/test_frequency.rb +1 -1
  116. data/test/lib/facets/core/enumerable/test_graph.rb +1 -1
  117. data/test/lib/facets/core/enumerable/test_ideal_entropy.rb +1 -1
  118. data/test/lib/facets/core/enumerable/test_none.rb +1 -1
  119. data/test/lib/facets/core/enumerable/test_occur.rb +1 -1
  120. data/test/lib/facets/core/enumerable/test_one.rb +1 -1
  121. data/test/lib/facets/core/enumerable/test_op_pow.rb +1 -1
  122. data/test/lib/facets/core/enumerable/test_partition_by.rb +1 -1
  123. data/test/lib/facets/core/enumerable/test_permute.rb +1 -1
  124. data/test/lib/facets/core/enumerable/test_probability.rb +1 -1
  125. data/test/lib/facets/core/enumerable/test_to_h.rb +1 -1
  126. data/test/lib/facets/core/enumerable/test_uniq_by.rb +1 -1
  127. data/test/lib/facets/core/file/self/test_create.rb +1 -1
  128. data/test/lib/facets/core/file/self/test_open_as_string.rb +1 -1
  129. data/test/lib/facets/core/file/self/test_read_list.rb +1 -1
  130. data/test/lib/facets/core/file/self/test_sanitize.rb +1 -1
  131. data/test/lib/facets/core/file/self/test_split_all.rb +1 -1
  132. data/test/lib/facets/core/float/test_round_at.rb +1 -1
  133. data/test/lib/facets/core/float/test_round_to.rb +1 -1
  134. data/test/lib/facets/core/hash/self/test_zipnew.rb +1 -1
  135. data/test/lib/facets/core/hash/test_alias.rb +1 -1
  136. data/test/lib/facets/core/hash/test_assert_has_keys.rb +1 -1
  137. data/test/lib/facets/core/hash/test_assert_has_only_keys.rb +1 -1
  138. data/test/lib/facets/core/hash/test_at.rb +1 -1
  139. data/test/lib/facets/core/hash/test_collate.rb +1 -1
  140. data/test/lib/facets/core/hash/test_each.rb +1 -1
  141. data/test/lib/facets/core/hash/test_each_with_index.rb +1 -1
  142. data/test/lib/facets/core/hash/test_each_with_key.rb +1 -1
  143. data/test/lib/facets/core/hash/test_graph.rb +1 -1
  144. data/test/lib/facets/core/hash/test_has_keys.rb +1 -1
  145. data/test/lib/facets/core/hash/test_has_only_keys.rb +1 -1
  146. data/test/lib/facets/core/hash/test_inverse.rb +1 -1
  147. data/test/lib/facets/core/hash/test_normalize_keys.rb +1 -1
  148. data/test/lib/facets/core/hash/test_op_fetch.rb +1 -1
  149. data/test/lib/facets/core/hash/test_op_lshift.rb +1 -1
  150. data/test/lib/facets/core/hash/test_rand_key.rb +1 -1
  151. data/test/lib/facets/core/hash/test_rand_pair.rb +1 -1
  152. data/test/lib/facets/core/hash/test_rand_value.rb +1 -1
  153. data/test/lib/facets/core/hash/test_replace_each.rb +1 -1
  154. data/test/lib/facets/core/hash/test_shuffle.rb +1 -1
  155. data/test/lib/facets/core/hash/test_slice.rb +1 -1
  156. data/test/lib/facets/core/hash/test_stringify_keys.rb +1 -1
  157. data/test/lib/facets/core/hash/test_swap.rb +1 -1
  158. data/test/lib/facets/core/hash/test_swapkey.rb +1 -1
  159. data/test/lib/facets/core/hash/test_symbolize_keys.rb +1 -1
  160. data/test/lib/facets/core/hash/test_to_h.rb +1 -1
  161. data/test/lib/facets/core/hash/test_to_ostruct.rb +1 -1
  162. data/test/lib/facets/core/hash/test_to_ostruct_recurse.rb +1 -1
  163. data/test/lib/facets/core/hash/test_traverse.rb +1 -1
  164. data/test/lib/facets/core/hash/test_update_each.rb +1 -1
  165. data/test/lib/facets/core/hash/test_update_keys.rb +1 -1
  166. data/test/lib/facets/core/hash/test_update_values.rb +1 -1
  167. data/test/lib/facets/core/hash/test_weave.rb +1 -1
  168. data/test/lib/facets/core/integer/test_factorial.rb +1 -1
  169. data/test/lib/facets/core/integer/test_multiple.rb +1 -1
  170. data/test/lib/facets/core/integer/test_of.rb +1 -1
  171. data/test/lib/facets/core/integer/test_ordinal.rb +1 -1
  172. data/test/lib/facets/core/integer/test_times_collect.rb +1 -1
  173. data/test/lib/facets/core/kernel/test___class__.rb +1 -1
  174. data/test/lib/facets/core/kernel/test_as.rb +1 -1
  175. data/test/lib/facets/core/kernel/test_assign_from.rb +1 -1
  176. data/test/lib/facets/core/kernel/test_assign_with.rb +1 -1
  177. data/test/lib/facets/core/kernel/test_bool.rb +1 -1
  178. data/test/lib/facets/core/kernel/test_bug.rb +1 -1
  179. data/test/lib/facets/core/kernel/test_call_stack.rb +1 -1
  180. data/test/lib/facets/core/kernel/test_called.rb +1 -1
  181. data/test/lib/facets/core/kernel/test_callee.rb +1 -1
  182. data/test/lib/facets/core/kernel/test_constant.rb +1 -1
  183. data/test/lib/facets/core/kernel/test_copy.rb +1 -1
  184. data/test/lib/facets/core/kernel/test_deep_copy.rb +1 -1
  185. data/test/lib/facets/core/kernel/test_demo.rb +1 -1
  186. data/test/lib/facets/core/kernel/test_fn.rb +1 -1
  187. data/test/lib/facets/core/kernel/test_get_by_id.rb +1 -1
  188. data/test/lib/facets/core/kernel/test_here.rb +1 -1
  189. data/test/lib/facets/core/kernel/test_in.rb +1 -1
  190. data/test/lib/facets/core/kernel/test_instance_exec.rb +1 -1
  191. data/test/lib/facets/core/kernel/test_maybe.rb +1 -1
  192. data/test/lib/facets/core/kernel/test_metaclass.rb +1 -1
  193. data/test/lib/facets/core/kernel/test_method.rb +1 -1
  194. data/test/lib/facets/core/kernel/test_methods.rb +1 -1
  195. data/test/lib/facets/core/kernel/test_new.rb +1 -1
  196. data/test/lib/facets/core/kernel/test_object_class.rb +1 -1
  197. data/test/lib/facets/core/kernel/test_object_hexid.rb +1 -1
  198. data/test/lib/facets/core/kernel/test_quaclass.rb +1 -1
  199. data/test/lib/facets/core/kernel/test_require_all.rb +1 -1
  200. data/test/lib/facets/core/kernel/test_require_esc.rb +1 -1
  201. data/test/lib/facets/core/kernel/test_require_facet.rb +1 -1
  202. data/test/lib/facets/core/kernel/test_resc.rb +1 -1
  203. data/test/lib/facets/core/kernel/test_returning.rb +1 -1
  204. data/test/lib/facets/core/kernel/test_send_as.rb +1 -1
  205. data/test/lib/facets/core/kernel/test_set_from.rb +1 -1
  206. data/test/lib/facets/core/kernel/test_set_with.rb +1 -1
  207. data/test/lib/facets/core/kernel/test_silently.rb +1 -1
  208. data/test/lib/facets/core/kernel/test_singleton.rb +1 -1
  209. data/test/lib/facets/core/kernel/test_singleton_class.rb +1 -1
  210. data/test/lib/facets/core/kernel/test_superior.rb +1 -1
  211. data/test/lib/facets/core/kernel/test_supermethod.rb +1 -1
  212. data/test/lib/facets/core/kernel/test_this.rb +1 -1
  213. data/test/lib/facets/core/kernel/test_to_b.rb +1 -1
  214. data/test/lib/facets/core/kernel/test_to_bool.rb +1 -1
  215. data/test/lib/facets/core/kernel/test_to_data.rb +1 -1
  216. data/test/lib/facets/core/kernel/test_uri.rb +1 -1
  217. data/test/lib/facets/core/kernel/test_val.rb +1 -1
  218. data/test/lib/facets/core/kernel/test_with_accessor.rb +1 -1
  219. data/test/lib/facets/core/matchdata/test_match.rb +1 -1
  220. data/test/lib/facets/core/matchdata/test_matchtree.rb +1 -1
  221. data/test/lib/facets/core/module/test_abstract.rb +1 -1
  222. data/test/lib/facets/core/module/test_alias_module_function.rb +1 -1
  223. data/test/lib/facets/core/module/test_ancestor.rb +1 -1
  224. data/test/lib/facets/core/module/test_basename.rb +1 -1
  225. data/test/lib/facets/core/module/test_by_name.rb +1 -1
  226. data/test/lib/facets/core/module/test_class_extension.rb +1 -1
  227. data/test/lib/facets/core/module/test_clone_using.rb +1 -1
  228. data/test/lib/facets/core/module/test_dirname.rb +1 -1
  229. data/test/lib/facets/core/module/test_equate_on.rb +1 -1
  230. data/test/lib/facets/core/module/test_include_as.rb +1 -1
  231. data/test/lib/facets/core/module/test_initializer.rb +1 -1
  232. data/test/lib/facets/core/module/test_instance_methods.rb +1 -1
  233. data/test/lib/facets/core/module/test_integrate.rb +1 -1
  234. data/test/lib/facets/core/module/test_memoize.rb +1 -1
  235. data/test/lib/facets/core/module/test_modspace.rb +1 -1
  236. data/test/lib/facets/core/module/test_namespace.rb +1 -1
  237. data/test/lib/facets/core/module/test_nesting.rb +1 -1
  238. data/test/lib/facets/core/module/test_nodef.rb +1 -1
  239. data/test/lib/facets/core/module/test_on_included.rb +1 -1
  240. data/test/lib/facets/core/module/test_redef.rb +1 -1
  241. data/test/lib/facets/core/module/test_redefine_method.rb +1 -1
  242. data/test/lib/facets/core/module/test_redirect.rb +1 -1
  243. data/test/lib/facets/core/module/test_redirect_method.rb +1 -1
  244. data/test/lib/facets/core/module/test_remove.rb +1 -1
  245. data/test/lib/facets/core/module/test_rename.rb +1 -1
  246. data/test/lib/facets/core/module/test_rename_method.rb +1 -1
  247. data/test/lib/facets/core/module/test_revisal.rb +1 -1
  248. data/test/lib/facets/core/module/test_shadow_method.rb +1 -1
  249. data/test/lib/facets/core/module/test_sort_on.rb +1 -1
  250. data/test/lib/facets/core/module/test_this.rb +1 -1
  251. data/test/lib/facets/core/module/test_wrap.rb +1 -1
  252. data/test/lib/facets/core/module/test_wrap_method.rb +1 -1
  253. data/test/lib/facets/core/nilclass/test_blank.rb +1 -1
  254. data/test/lib/facets/core/nilclass/test_empty.rb +1 -1
  255. data/test/lib/facets/core/nilclass/test_include.rb +1 -1
  256. data/test/lib/facets/core/nilclass/test_op_fetch.rb +1 -1
  257. data/test/lib/facets/core/nilclass/test_size.rb +1 -1
  258. data/test/lib/facets/core/nilclass/test_to_h.rb +1 -1
  259. data/test/lib/facets/core/numeric/test_approx.rb +1 -1
  260. data/test/lib/facets/core/numeric/test_ceil_multiple.rb +1 -1
  261. data/test/lib/facets/core/numeric/test_distance.rb +1 -1
  262. data/test/lib/facets/core/numeric/test_succ.rb +1 -1
  263. data/test/lib/facets/core/numeric/test_to_b.rb +1 -1
  264. data/test/lib/facets/core/ostruct/test___merge__.rb +1 -1
  265. data/test/lib/facets/core/ostruct/test___update__.rb +1 -1
  266. data/test/lib/facets/core/ostruct/test_op_fetch.rb +1 -1
  267. data/test/lib/facets/core/ostruct/test_op_store.rb +1 -1
  268. data/test/lib/facets/core/proc/test_compose.rb +1 -1
  269. data/test/lib/facets/core/proc/test_op_mul.rb +1 -1
  270. data/test/lib/facets/core/proc/test_to_method.rb +1 -1
  271. data/test/lib/facets/core/range/test_to_r.rb +1 -1
  272. data/test/lib/facets/core/range/test_to_range.rb +1 -1
  273. data/test/lib/facets/core/range/test_umbrella.rb +1 -1
  274. data/test/lib/facets/core/range/test_within.rb +1 -1
  275. data/test/lib/facets/core/regexp/test_arity.rb +1 -1
  276. data/test/lib/facets/core/regexp/test_to_re.rb +1 -1
  277. data/test/lib/facets/core/regexp/test_to_regexp.rb +1 -1
  278. data/test/lib/facets/core/string/self/test_interpolate.rb +1 -1
  279. data/test/lib/facets/core/string/self/test_patterns.rb +1 -1
  280. data/test/lib/facets/core/string/self/test_rand_letter.rb +1 -1
  281. data/test/lib/facets/core/string/test_align_center.rb +1 -1
  282. data/test/lib/facets/core/string/test_at_rand.rb +1 -1
  283. data/test/lib/facets/core/string/test_basename.rb +1 -1
  284. data/test/lib/facets/core/string/test_blank.rb +1 -1
  285. data/test/lib/facets/core/string/test_bracket.rb +1 -1
  286. data/test/lib/facets/core/string/test_camelcase.rb +1 -1
  287. data/test/lib/facets/core/string/test_camelize.rb +1 -1
  288. data/test/lib/facets/core/string/test_capitalized.rb +1 -1
  289. data/test/lib/facets/core/string/test_chars.rb +1 -1
  290. data/test/lib/facets/core/string/test_cmp.rb +1 -1
  291. data/test/lib/facets/core/string/test_demodulize.rb +1 -1
  292. data/test/lib/facets/core/string/test_divide.rb +1 -1
  293. data/test/lib/facets/core/string/test_downcase.rb +1 -1
  294. data/test/lib/facets/core/string/test_dresner.rb +1 -1
  295. data/test/lib/facets/core/string/test_each_char.rb +1 -1
  296. data/test/lib/facets/core/string/test_each_word.rb +1 -1
  297. data/test/lib/facets/core/string/test_first.rb +1 -1
  298. data/test/lib/facets/core/string/test_fold.rb +1 -1
  299. data/test/lib/facets/core/string/test_humanize.rb +1 -1
  300. data/test/lib/facets/core/string/test_indent.rb +1 -1
  301. data/test/lib/facets/core/string/test_index_all.rb +1 -1
  302. data/test/lib/facets/core/string/test_last.rb +1 -1
  303. data/test/lib/facets/core/string/test_line_wrap.rb +1 -1
  304. data/test/lib/facets/core/string/test_lines.rb +1 -1
  305. data/test/lib/facets/core/string/test_lowercase.rb +1 -1
  306. data/test/lib/facets/core/string/test_margin.rb +1 -1
  307. data/test/lib/facets/core/string/test_methodize.rb +1 -1
  308. data/test/lib/facets/core/string/test_modulize.rb +1 -1
  309. data/test/lib/facets/core/string/test_mscan.rb +1 -1
  310. data/test/lib/facets/core/string/test_natcmp.rb +1 -1
  311. data/test/lib/facets/core/string/test_nchar.rb +1 -1
  312. data/test/lib/facets/core/string/test_pathize.rb +1 -1
  313. data/test/lib/facets/core/string/test_pop.rb +1 -1
  314. data/test/lib/facets/core/string/test_pot.rb +1 -1
  315. data/test/lib/facets/core/string/test_push.rb +1 -1
  316. data/test/lib/facets/core/string/test_quote.rb +1 -1
  317. data/test/lib/facets/core/string/test_rand_byte.rb +1 -1
  318. data/test/lib/facets/core/string/test_rand_index.rb +1 -1
  319. data/test/lib/facets/core/string/test_range.rb +1 -1
  320. data/test/lib/facets/core/string/test_range_all.rb +1 -1
  321. data/test/lib/facets/core/string/test_range_of_line.rb +1 -1
  322. data/test/lib/facets/core/string/test_regesc.rb +1 -1
  323. data/test/lib/facets/core/string/test_shatter.rb +1 -1
  324. data/test/lib/facets/core/string/test_shift.rb +1 -1
  325. data/test/lib/facets/core/string/test_shuffle.rb +1 -1
  326. data/test/lib/facets/core/string/test_similarity.rb +1 -1
  327. data/test/lib/facets/core/string/test_singular.rb +1 -1
  328. data/test/lib/facets/core/string/test_soundex.rb +1 -1
  329. data/test/lib/facets/core/string/test_succ.rb +1 -1
  330. data/test/lib/facets/core/string/test_to_a.rb +1 -1
  331. data/test/lib/facets/core/string/test_to_b.rb +1 -1
  332. data/test/lib/facets/core/string/test_to_const.rb +1 -1
  333. data/test/lib/facets/core/string/test_to_date.rb +1 -1
  334. data/test/lib/facets/core/string/test_to_proc.rb +1 -1
  335. data/test/lib/facets/core/string/test_to_re.rb +1 -1
  336. data/test/lib/facets/core/string/test_to_time.rb +1 -1
  337. data/test/lib/facets/core/string/test_unix_crypt.rb +1 -1
  338. data/test/lib/facets/core/string/test_unpack.rb +1 -1
  339. data/test/lib/facets/core/string/test_unshift.rb +1 -1
  340. data/test/lib/facets/core/string/test_upcase.rb +1 -1
  341. data/test/lib/facets/core/string/test_whitespace.rb +1 -1
  342. data/test/lib/facets/core/string/test_word_filter.rb +1 -1
  343. data/test/lib/facets/core/string/test_word_wrap.rb +1 -1
  344. data/test/lib/facets/core/string/test_words.rb +1 -1
  345. data/test/lib/facets/core/symbol/test_camelcase.rb +1 -1
  346. data/test/lib/facets/core/symbol/test_camelize.rb +1 -1
  347. data/test/lib/facets/core/symbol/test_capitalize.rb +1 -1
  348. data/test/lib/facets/core/symbol/test_capitalized.rb +1 -1
  349. data/test/lib/facets/core/symbol/test_downcase.rb +1 -1
  350. data/test/lib/facets/core/symbol/test_not.rb +1 -1
  351. data/test/lib/facets/core/symbol/test_pad.rb +1 -1
  352. data/test/lib/facets/core/symbol/test_succ.rb +1 -1
  353. data/test/lib/facets/core/symbol/test_to_const.rb +1 -1
  354. data/test/lib/facets/core/symbol/test_to_proc.rb +1 -1
  355. data/test/lib/facets/core/symbol/test_to_str.rb +1 -1
  356. data/test/lib/facets/core/symbol/test_underscore.rb +1 -1
  357. data/test/lib/facets/core/symbol/test_upcase.rb +1 -1
  358. data/test/lib/facets/core/time/test_change.rb +1 -1
  359. data/test/lib/facets/core/time/test_elapse.rb +1 -1
  360. data/test/lib/facets/core/time/test_stamp.rb +1 -1
  361. data/test/lib/facets/core/time/test_to_date.rb +1 -1
  362. data/test/lib/facets/core/time/test_to_s.rb +1 -1
  363. data/test/lib/facets/core/time/test_to_time.rb +1 -1
  364. data/test/lib/facets/more/test_annattr.rb +1 -1
  365. data/test/lib/facets/more/test_annotation.rb +1 -1
  366. data/test/lib/facets/more/test_ansicode.rb +1 -1
  367. data/test/lib/facets/more/test_association.rb +1 -1
  368. data/test/lib/facets/more/test_autoarray.rb +1 -1
  369. data/test/lib/facets/more/test_basicobject.rb +1 -1
  370. data/test/lib/facets/more/test_bbcode.rb +1 -1
  371. data/test/lib/facets/more/test_binaryreader.rb +1 -1
  372. data/test/lib/facets/more/test_bitmask.rb +1 -1
  373. data/test/lib/facets/more/test_bytes.rb +1 -1
  374. data/test/lib/facets/more/test_classmethods.rb +1 -1
  375. data/test/lib/facets/more/test_command.rb +1 -1
  376. data/test/lib/facets/more/test_coroutine.rb +1 -1
  377. data/test/lib/facets/more/test_crypt.rb +1 -1
  378. data/test/lib/facets/more/test_cut.rb +1 -1
  379. data/test/lib/facets/more/test_dictionary.rb +1 -1
  380. data/test/lib/facets/more/test_elementor.rb +1 -1
  381. data/test/lib/facets/more/test_enumerablepass.rb +1 -1
  382. data/test/lib/facets/more/test_floatstring.rb +1 -1
  383. data/test/lib/facets/more/test_functor.rb +1 -1
  384. data/test/lib/facets/more/test_htmlbuilder.rb +1 -1
  385. data/test/lib/facets/more/test_infinity.rb +1 -1
  386. data/test/lib/facets/more/test_inheritor.rb +1 -1
  387. data/test/lib/facets/more/test_instance_intercept.rb +1 -1
  388. data/test/lib/facets/more/test_interval.rb +1 -1
  389. data/test/lib/facets/more/test_json.rb +1 -1
  390. data/test/lib/facets/more/test_lisp.rb +1 -1
  391. data/test/lib/facets/more/test_lisp_format.rb +1 -1
  392. data/test/lib/facets/more/test_lrucache.rb +1 -1
  393. data/test/lib/facets/more/test_mathconstants.rb +1 -1
  394. data/test/lib/facets/more/test_methodfilter.rb +1 -1
  395. data/test/lib/facets/more/test_methodprobe.rb +1 -1
  396. data/test/lib/facets/more/test_multipliers.rb +1 -1
  397. data/test/lib/facets/more/test_multiton.rb +1 -1
  398. data/test/lib/facets/more/test_nackclass.rb +1 -1
  399. data/test/lib/facets/more/test_nilcomparable.rb +1 -1
  400. data/test/lib/facets/more/test_opencascade.rb +1 -1
  401. data/test/lib/facets/more/test_openobject.rb +1 -1
  402. data/test/lib/facets/more/test_overload.rb +1 -1
  403. data/test/lib/facets/more/test_paramix.rb +1 -1
  404. data/test/lib/facets/more/test_pqueue.rb +1 -1
  405. data/test/lib/facets/more/test_predicate.rb +1 -1
  406. data/test/lib/facets/more/test_preinitialize.rb +1 -1
  407. data/test/lib/facets/more/test_promoteself.rb +1 -1
  408. data/test/lib/facets/more/test_recorder.rb +1 -1
  409. data/test/lib/facets/more/test_snapshot.rb +1 -1
  410. data/test/lib/facets/more/test_statichash.rb +1 -1
  411. data/test/lib/facets/more/test_syncarray.rb +1 -1
  412. data/test/lib/facets/more/test_synchash.rb +1 -1
  413. data/test/lib/facets/more/test_tagiterator.rb +1 -1
  414. data/test/lib/facets/more/test_taskable.rb +28 -7
  415. data/test/lib/facets/more/test_timer.rb +1 -1
  416. data/test/lib/facets/more/test_times.rb +1 -1
  417. data/test/lib/facets/more/test_tuple.rb +1 -1
  418. data/test/lib/facets/more/test_typecast.rb +1 -1
  419. data/test/lib/facets/more/test_uninheritable.rb +1 -1
  420. data/test/lib/facets/more/test_units.rb +1 -1
  421. data/test/lib/facets/more/test_xmlbuilder.rb +1 -1
  422. data/test/lib/facets/more/test_xmlhelper.rb +1 -1
  423. data/test/lib/facets/more/test_xoxo.rb +1 -1
  424. data/test/lib/facets/more/test_yamlstruct.rb +1 -1
  425. data/util/announce +20 -0
  426. data/util/changelog +8 -0
  427. data/util/count +8 -0
  428. data/util/extest +8 -0
  429. data/util/list +38 -0
  430. data/util/package +9 -0
  431. data/util/prepare +12 -0
  432. data/util/redirect +34 -0
  433. data/util/release +13 -0
  434. data/util/setup +7 -0
  435. data/util/test +7 -0
  436. data/util/version +8 -0
  437. metadata +1514 -1491
  438. data/doc/CAUTION +0 -55
  439. data/doc/IMPORTANT +0 -8
  440. data/doc/LATEST +0 -41
  441. data/doc/history/ANN-0.6.0 +0 -40
  442. data/doc/history/ANN-0.6.1 +0 -36
  443. data/doc/history/ANN-0.6.3 +0 -43
  444. data/doc/history/ANN-0.7.0 +0 -59
  445. data/doc/history/ANN-0.8.1 +0 -127
  446. data/doc/history/INTRO +0 -172
  447. data/doc/history/README +0 -223
  448. data/doc/history/README-OLD +0 -180
  449. data/doc/manifest +0 -1209
  450. data/doc/scrap/Rakefile.old +0 -181
  451. data/lib/facet/enumerable/each_slice.rb +0 -1
  452. data/lib/facets/core/enumerable/each_slice.rb +0 -131
  453. data/meta/reapfile +0 -184
  454. data/meta/task +0 -74
  455. data/meta/tasks/calibre.rb +0 -16
  456. data/meta/version +0 -1
@@ -1,223 +0,0 @@
1
-
2
- = Ruby Facets
3
-
4
- "ALL BASE COMMON"
5
-
6
-
7
- == Introduction
8
-
9
- Ruby Facets is a vast collection of methods which extend the core
10
- capabilities of Ruby's built-in classes and modules PLUS a large
11
- collection of additional modules, classes and microframeworks.
12
- The goal of the project is to offer large set of high-quality
13
- programming "parts" that target a variety of usecases.
14
-
15
- The collection of extension methods is unique by virtue of its atomicity.
16
- Tthe methods are stored individually so that each can be required
17
- independently. This gives developers fine-grain control over which
18
- extra methods to bring into his or her code. The collection currently
19
- contains over 400 methods spanning 28 classes and modules.
20
-
21
- The class, module and microframework additions consitute an ever growing
22
- and improving source of reusable components. Some very nice addations
23
- havve recently been added, from an amazing Units system to an elegant
24
- annotations systems. And of course there are all the more typical goodies
25
- like Tuple, Functor and Multiton.
26
-
27
- Facets holds to the notion that the more we can reasonably integrate into
28
- a common foundation directed toward general needs, the better that foundation
29
- will be able to serve us. There are a number of advantages here:
30
-
31
- * Better Code-reuse
32
- * Collaborative Improvements
33
- * Greater Name Consistency
34
- * One-stop Shop and Installation
35
-
36
-
37
- == Status
38
-
39
- The current status is quite good. While various parts are still considered
40
- Beta, everything should be relatively usable.
41
-
42
-
43
- == Installation
44
-
45
-
46
- The easiest way to install is via RubyGems. On the command line enter:
47
-
48
- > gem install facets
49
-
50
- To manually install, unpack the .tbz (.tar.bz2) package and use the included
51
- setup.rb script. For example:
52
-
53
- > tar -xvzf facets,YYYY-MM-DD.tbz
54
- > cd facets,YYYY-MM-DD
55
- > sudo ruby setup.rb
56
-
57
-
58
- == Usage
59
-
60
- For detailed usage of any given method or module please refer to the
61
- API RDocs. Most are well documented.
62
-
63
- Although not at all neccessary it is recommended that before requiring
64
- any other facet you first require the main facility.
65
-
66
- require 'facets'
67
-
68
- This loads all the facets considered "base" --facets that are fundementally
69
- useful, plus loads the Facets system module. The Facets module provides a
70
- more robust interface to aquiring extension methods. In the past one would
71
- have used the Kernel#require method like so:
72
-
73
- require 'facet/time/stamp' # TOO BE DEPRECATED !!!
74
-
75
- You should begin transitioning to:
76
-
77
- Time.use Facets, :stamp
78
-
79
- Using this method allows Facets to work more perceisely and efficiently. One
80
- of the advantages that arises is that Facets' can search the class hierarchy
81
- for a method. For example if you wanted to use #each_permutation on an Array.
82
-
83
- Array.use Facets, :each_permutation
84
-
85
- Even though #each_permutation is a method of Enumerable this will still work
86
- because Enumerable is a superclass of Array.
87
-
88
- Also it allows for the use operators without special recourse.
89
- For instance, the Proc compostion operator can be require simply.
90
-
91
- Proc.use Facets, :*
92
-
93
- If you're wondering why you have to specify the Facets module in #use,
94
- it is becuase #use is a generalized method. Anyone can easily take advantage
95
- of this functionality by utlizing Facets' Module-Package system (package.rb).
96
- See the API Documentation for further details of putting this to use in your
97
- programs.
98
-
99
- Some extension methodsets are also available. These are loaded in traditional
100
- manner. For example:
101
-
102
- require 'facet/string_as_array'
103
-
104
- The most extensive of these is 'all'. The 'all' set requires nearly every
105
- Facets extension method there is. The only methods NOT required are those
106
- considered "cautionary" in the way they effect Ruby b/c they may potentially
107
- disrupt pre-existing code. Note that 'all' is not the recommended way to
108
- use Facets and is only provided with a priviso of caution --that's alot
109
- of methods!
110
-
111
- More useful sets include, 'random' which loads every facet method related to
112
- randomness and 'inflect' which loads a number of methods for manipulating
113
- strings in high-level ways, like #camelize and #pluralize.
114
-
115
- The rest of Facets, the modules, classses and microframeworks are
116
- requirable through the traditional interface as well. For example:
117
-
118
- require 'facet/units'
119
-
120
- Facets also includes an alternative way to use classes and modules.
121
- By calling the #autorequire method, Facets will automatically
122
- require the appropriate files when you first attempt to use one.
123
- For example:
124
-
125
- require 'facets'
126
-
127
- Facets.autorequire
128
-
129
- t = Tuple[1,2,3]
130
-
131
- And the 'tuple.rb' file will be automatically required. The auto-requiring
132
- also handily applies to some of Ruby's standard library.
133
- Keep in mind though that the microframeworks do not generally work with this,
134
- since they are not typical bound to a particular module or class,
135
- so those will have to be required on their own.
136
-
137
- Please see the API Docs for details pertaining to the functionality
138
- of each feature.
139
-
140
-
141
- == Contribute
142
-
143
- This project thrives on contribution.
144
-
145
- If you have any extension methods, classes, modules or microframeworks
146
- that you think have general applicability and would like to see them
147
- included in this project, don't hesitiate to submit. There's a very good
148
- chance it will be included. Also, if you have better versions of any thing
149
- already included or simply have a patch, they too are more than welcome.
150
- We want Ruby Facets to be of the highest quality.
151
-
152
-
153
- == Authorship
154
-
155
- This collection was put together by, and largely written by Thomas Sawyer
156
- (aka Trans Onoma). He can be reached via email at transfire at gmail.com.
157
-
158
- Some parts of this collection were written and/or inspired by other
159
- persons. Fortunately nearly all were copyrighted under the same open
160
- license, the Ruby License. In the few excpetions I have included the
161
- copyright notice with the source code.
162
-
163
- Any code file not specifically labelled shall fall under the Ruby License.
164
-
165
- In all cases, I have made every effort to give credit where credit is due. You will find these copyrights, thanks and acknowledgements embedded in the source code, and an unobtrusive
166
- "Author(s)" section is given in the RDocs.
167
-
168
- Main Developers include:
169
-
170
- * Thomas Sawyer
171
- * George Moschovitis
172
- * Peter Vanbroekhoven
173
- * Florian Gross
174
-
175
- See the AUTHORS file for a list of all other contributing Rubyists.
176
-
177
- If anyone is missing from the list, please let me know and
178
- I will correct right away. Thanks.
179
-
180
-
181
- == License
182
-
183
- In so far as it matters, the collection PER COLLECTION is licensed
184
- as follows:
185
-
186
- Ruby Facets
187
- Copyright (c) 2004,2005 Thomas Sawyer
188
- Ruby License
189
-
190
- The Ruby license is a dual license that also provides for use of the GPL.
191
- A copy of both licenses accompany this document (see COPYING).
192
-
193
- Fortunately nearly all the code is copyrighted under the same open license,
194
- namely the Ruby License. But some of the code is licensed differently
195
- according to the original authors wishes. In the few excpetions I have
196
- included the copyright notice with the source code. All such licesnses are
197
- OOS licesnes. I am in the proccess of asking the particular authors to consider
198
- allowing the use of the single Ruby license so that one license can
199
- serve for all. (UPDATE: Not very much left under seperate licenses.)
200
-
201
- Any code file not specifically labelled shall fall under the Ruby License.
202
-
203
-
204
- == Pitch
205
-
206
- ALL YOUR BASE ARE BELONG TO RUBY
207
-
208
-
209
- ----
210
-
211
- [1] A lot of mental anguish went into finding a good title Ruby Facets.
212
- Of course, in the end only one name can take the honor. Other good names which were
213
- considered: Warchest w/ Atomix, Downs & Ace, Trix & Atomx and even Pillbox & Pills
214
- (a _why suggestion). Then the names that almost won out and were used for a good while:
215
- Nano Methods and Mega Modules --great names but turned maybe a little to "fad".
216
- Finally let's not forget even older "working" titles that were used along the way:
217
- Raspberry, ABC, Succ and the very original Tomslib.
218
-
219
- # Copyright (c)2005 Thomas Sawyer
220
- # --.com : The web page without a name.
221
- # (ruby-lang.org) Do you Ruby?
222
-
223
-
@@ -1,180 +0,0 @@
1
-
2
- = Ruby Facets
3
-
4
- == What is this?
5
-
6
- Ruby Facets is the a collection of general, pure-Ruby extensions
7
- and additions for the Ruby programming language. The extensions are known
8
- as the Atomic Methods, design falls into
9
- two parts: the Atomic Methods and the CMMs (Classes, Modules and Mixins).
10
-
11
- === The Atomic Library
12
-
13
- The heart of Ruby Facets, which truth be told stands for Fantastic Atomic Core Extensions,
14
- is an growing collection of methods to complement Ruby's core and standard
15
- libs. It is an _atomic_ library in that the methods are packaged individually
16
- so that each can be _required_ independently. This gives the programmer greater
17
- control to include only the extra methods he or she actually needs.
18
- The package currently contains over 300 atomic methods, spanning over 26 classes and modules.
19
-
20
- === The Classes, Modules and Mixins
21
-
22
- In addition to the atomic methods, Facets also includes a large collection
23
- of addon classes, modules and mixins. [Note: These used to reside in a separate lib
24
- called Carats. This has been deprecated in favor of a single package.]
25
-
26
- In short, through a single package, the Ruby programmer is treated to a
27
- plethora of programming tools.
28
-
29
-
30
- == Calibre
31
-
32
- Ruby Facets is part of the Calibre project. You can learn more at:
33
-
34
- http://calibre.rubyforge.com
35
-
36
-
37
- == Installation
38
-
39
- The easiest way to install is via RubyGems. On the command line enter:
40
-
41
- > gem install facets
42
-
43
- To manually install, untar the package and use the included setup.rb script.
44
- For example:
45
-
46
- > tar -xvzf facets-x.y.z.tar.gz
47
- > cd facets--x.y.z
48
- > sudo ruby setup.rb
49
-
50
-
51
- == Usage
52
-
53
- There are quite a few methods, classes and modules. For detailed usage it is best
54
- to refer to the API RDocs. Most is well documented. Assistance in
55
- improving documentation though is always appreciated.
56
-
57
- The general require statement for an atomic facet is as follows:
58
-
59
- require 'facet/<class|module>/<method-name>'
60
-
61
- All lowercase. The method-name may differ a bit from the actual method. If a method-name
62
- ends in ?, !, or = the character is simply removed. For methods that are non-alphanumeric,
63
- a suitable name is chosen according ot the methods functionaity and then suffixed with '-op',
64
- for "operator". For example, perhaps a paricular application would be better
65
- served if the NilClass responded to the <tt>#empty?</tt> message.
66
-
67
- require 'facet/nil/empty'
68
-
69
- And the <tt>#empty?</tt> method will then be only new method added.
70
- Most "atoms" contain but a single method, but excpetions occur when methods
71
- very tightly related.
72
-
73
- There are also numerous shortcuts for including atoms in mass.
74
- Some of these occur at the top-level under 'facets/', while
75
- others occur in the atomic subdirectory 'facets/{class|module}/'.
76
-
77
- The two most notable shortcuts are 'base' and 'common'.
78
- If you wish to include all the methods considered basic:
79
-
80
- require 'facet/base'
81
-
82
- This represents a group of about two dozen methods that are
83
- considered likely to be included in future versions of Ruby itself.
84
- If you would like to include the "base" methods plus all the methods
85
- considered "common":
86
-
87
- require 'facet/common'
88
-
89
- This is a large selection of methods that are considered the most
90
- often useful.
91
-
92
- All methods considered "uncommon" must be require individually.
93
- It is possible for a few of the uncommon methods to conflict,
94
- so there is no way to include _everything_ all at once.
95
-
96
- On top of all this there are the non-atomic additions. These never
97
- fall into a subdirectory, and can always be require accordingly:
98
-
99
- require 'facet/{file-name}'
100
-
101
- As for actual examples, well that might require a book.
102
- But again, refer to the API docs.
103
-
104
-
105
- == Contribute
106
-
107
- The project thrives on contribution. Please feel free to offer any
108
- extension you wish. The criteria for inclusion is fairly light:
109
-
110
- * Is it generally useful and/or highly interesting?
111
- * Does it pass a basic testcase?
112
-
113
- If it meets these requirements then it will in all likelihood
114
- be accepted into the main facets lib.
115
-
116
-
117
- == Authorship
118
-
119
- This collection was put together by, and largely written by Thomas Sawyer
120
- (aka T. Onoma). He can be reached via email at transfire at gmail.com.
121
-
122
- Some parts of this collection were written and/or inspired by other
123
- persons. Fortunately nearly all were copyrighted under the same open
124
- license as this library. In the few excpetions I have included the
125
- copyright notice with the source code. In all cases, I have made every
126
- effort to give credit where credit is due. You will find these thanks
127
- and acknowledgements at the beginning of the source code.
128
-
129
- * Thomas Sawyer
130
- * Paul Brannan
131
- * Renald Buter
132
- * Hal Fulton
133
- * Gavin Sinclair
134
- * Michael Granger
135
- * Michael Neumann
136
- * Florian Frank
137
- * Mohammad Khan
138
- * Derek Lewis
139
- * Thomas-Ivo Heinen
140
- * Jan Molic
141
-
142
- This package is a collection of work by many persons.
143
- The actual code on is licensed according to the original authors
144
- desires, being one of the following: Ruby, GPL, LGPL, MIT, or Artistic.
145
- Copies of these licenses should accompany this document. Any piece of code
146
- not specifically laballed shall fall under the Ruby License.
147
-
148
- [Please Note: I am working to make sure everything is labeled appropriately.
149
- Please forgive me if I have not done so in a particular place --just let
150
- me know and I will fix.]
151
-
152
- Also, I would like to ask all those authors, whose code is collected here,
153
- to consider allowing me to move to the Ruby license, so one license can serve
154
- for all.
155
-
156
-
157
- == License
158
-
159
- The collection per collection is licensed as follows:
160
-
161
- Ruby Facets, the Fantastic Atomic Core Extensions
162
- Copyright (c) 2004,2005 Thomas Sawyer
163
- Ruby License
164
-
165
- The Ruby license is a dual license that also provides for use of the GPL.
166
- A copy of both licenses should accompany this document.
167
-
168
-
169
- == Mascot
170
-
171
- Does evey good project need a mascot? Well then, Facets
172
- has the Raspberry. Why the Raspberry? Because it is
173
- Red and Faceted, of course. :)
174
-
175
-
176
- == Pitch
177
-
178
- ALL YOUR BASE ARE BELONG TO RUBY
179
-
180
-
@@ -1,1209 +0,0 @@
1
- ./data/facets/units/binary/base.yaml
2
- ./data/facets/units/binary/extra.yaml
3
- ./data/facets/units/currency/base.yaml
4
- ./data/facets/units/cex.yaml
5
- ./data/facets/units/si/derived.yaml
6
- ./data/facets/units/si/base.yaml
7
- ./data/facets/units/si/extra.yaml
8
- ./data/facets/units/uk/base.yaml
9
- ./data/facets/units/default.yaml
10
- ./data/facets/units/dump_yaml.rb
11
- ./data/facets/units/us/base.yaml
12
- ./data/facets/units/standard.yaml
13
- ./data/facets/units/uk.yaml
14
- ./data/facets/units/xmethods/cached.yaml
15
- ./data/facets/units/xmethods/mapping.yaml
16
- ./data/facets/units/us.yaml
17
- ./meta/calibre/ProjectInfo.association
18
- ./meta/calibre/ProjectInfo.annotation
19
- ./meta/calibre/ProjectInfo.ansicode
20
- ./meta/calibre/ProjectInfo.basicobject
21
- ./meta/calibre/ProjectInfo.bbcode
22
- ./meta/calibre/ProjectInfo.binaryreader
23
- ./meta/calibre/ProjectInfo.bitmask
24
- ./meta/calibre/ProjectInfo.classinherit
25
- ./meta/calibre/ProjectInfo.classmethods
26
- ./meta/calibre/ProjectInfo.cloneable
27
- ./meta/calibre/ProjectInfo.consoleapp
28
- ./meta/calibre/ProjectInfo.coroutine
29
- ./meta/calibre/ProjectInfo.crypt
30
- ./meta/calibre/ProjectInfo.dictionary
31
- ./meta/calibre/ProjectInfo.downloader
32
- ./meta/calibre/ProjectInfo.enumerablepass
33
- ./meta/calibre/ProjectInfo.expirable
34
- ./meta/calibre/ProjectInfo.floatstring
35
- ./meta/calibre/ProjectInfo.functor
36
- ./meta/calibre/ProjectInfo.heap
37
- ./meta/calibre/ProjectInfo.inheritor
38
- ./meta/calibre/ProjectInfo.interval
39
- ./meta/calibre/ProjectInfo.lisp
40
- ./meta/calibre/ProjectInfo.lrucache
41
- ./meta/calibre/ProjectInfo.mathconstants
42
- ./meta/calibre/ProjectInfo.methodprobe
43
- ./meta/calibre/ProjectInfo.mock
44
- ./meta/calibre/ProjectInfo.multiton
45
- ./meta/calibre/ProjectInfo.nackclass
46
- ./meta/calibre/ProjectInfo.nilcomparable
47
- ./meta/calibre/ProjectInfo.nullclass
48
- ./meta/calibre/ProjectInfo.one
49
- ./meta/calibre/ProjectInfo.openobject
50
- ./meta/calibre/ProjectInfo.paramix
51
- ./meta/calibre/ProjectInfo.pool
52
- ./meta/calibre/ProjectInfo.progressbar
53
- ./meta/calibre/ProjectInfo.reference
54
- ./meta/calibre/ProjectInfo.semaphore
55
- ./meta/calibre/ProjectInfo.stateparser
56
- ./meta/calibre/ProjectInfo.statichash
57
- ./meta/calibre/ProjectInfo.system
58
- ./meta/calibre/ProjectInfo.tagiterator
59
- ./meta/calibre/ProjectInfo.timer
60
- ./meta/calibre/ProjectInfo.tracepoint
61
- ./meta/calibre/ProjectInfo.tuple
62
- ./meta/calibre/ProjectInfo.uniheritable
63
- ./meta/calibre/ProjectInfo.units
64
- ./meta/calibre/ProjectInfo.yamlstruct
65
- ./meta/task
66
- ./meta/tasks/calibre.rb
67
- ./meta/projectinfo
68
- ./meta/reapfile
69
- ./COPYING
70
- ./README
71
- ./demo/annotation/demo_annotation.rb
72
- ./demo/ansicolor/cdiff.rb
73
- ./demo/ansicolor/example.rb
74
- ./demo/io-reactor/chatserver.rb
75
- ./demo/lisp/game.rb
76
- ./lib/facet/array/op_fetch.rb
77
- ./lib/facet/array/at_rand.rb
78
- ./lib/facet/array/body.rb
79
- ./lib/facet/array/delete_values_at.rb
80
- ./lib/facet/array/delete_unless.rb
81
- ./lib/facet/array/delete_values.rb
82
- ./lib/facet/array/first.rb
83
- ./lib/facet/array/each_with_key.rb
84
- ./lib/facet/array/foot.rb
85
- ./lib/facet/array/head.rb
86
- ./lib/facet/array/last.rb
87
- ./lib/facet/array/join_sentence.rb
88
- ./lib/facet/array/merge.rb
89
- ./lib/facet/array/last_index.rb
90
- ./lib/facet/array/mid.rb
91
- ./lib/facet/array/middle.rb
92
- ./lib/facet/array/op_store.rb
93
- ./lib/facet/array/op_mod.rb
94
- ./lib/facet/array/pick.rb
95
- ./lib/facet/array/pos.rb
96
- ./lib/facet/array/pot.rb
97
- ./lib/facet/array/pull.rb
98
- ./lib/facet/array/range.rb
99
- ./lib/facet/array/rand_index.rb
100
- ./lib/facet/array/rand_subset.rb
101
- ./lib/facet/array/rotate.rb
102
- ./lib/facet/array/select.rb
103
- ./lib/facet/array/shuffle.rb
104
- ./lib/facet/array/store.rb
105
- ./lib/facet/array/tail.rb
106
- ./lib/facet/array/thru.rb
107
- ./lib/facet/array/to_b.rb
108
- ./lib/facet/array/to_h.rb
109
- ./lib/facet/array/to_hash.rb
110
- ./lib/facet/array/unzip.rb
111
- ./lib/facet/all.rb
112
- ./lib/facet/ansicode.rb
113
- ./lib/facet/annattr.rb
114
- ./lib/facet/binaryreader.rb
115
- ./lib/facet/annotation.rb
116
- ./lib/facet/aspects.rb
117
- ./lib/facet/association.rb
118
- ./lib/facet/basicobject.rb
119
- ./lib/facet/bbcode.rb
120
- ./lib/facet/binding/__FILE__.rb
121
- ./lib/facet/binding/__DIR__.rb
122
- ./lib/facet/binding/self/of_caller.rb
123
- ./lib/facet/binding/__LINE__.rb
124
- ./lib/facet/binding/call_stack.rb
125
- ./lib/facet/binding/called.rb
126
- ./lib/facet/binding/caller.rb
127
- ./lib/facet/binding/defined.rb
128
- ./lib/facet/binding/eval.rb
129
- ./lib/facet/binding/method_name.rb
130
- ./lib/facet/binding/local_variables.rb
131
- ./lib/facet/binding/op_fetch.rb
132
- ./lib/facet/binding/op_store.rb
133
- ./lib/facet/binding/self.rb
134
- ./lib/facet/class/unix_path.rb
135
- ./lib/facet/class/by_name.rb
136
- ./lib/facet/class/cattr.rb
137
- ./lib/facet/class/remove_subclasses.rb
138
- ./lib/facet/class/cattr_accessor.rb
139
- ./lib/facet/class/cattr_reader.rb
140
- ./lib/facet/class/cattr_writer.rb
141
- ./lib/facet/class/descendents.rb
142
- ./lib/facet/class/method_name.rb
143
- ./lib/facet/class/to_proc.rb
144
- ./lib/facet/class/remove_descendents.rb
145
- ./lib/facet/class/subclasses.rb
146
- ./lib/facet/binding.rb
147
- ./lib/facet/bitmask.rb
148
- ./lib/facet/builderobject.rb
149
- ./lib/facet/bytes.rb
150
- ./lib/facet/comparable/at_least.rb
151
- ./lib/facet/comparable/at_most.rb
152
- ./lib/facet/comparable/cap.rb
153
- ./lib/facet/comparable/clip.rb
154
- ./lib/facet/comparable/cmp.rb
155
- ./lib/facet/classmethods.rb
156
- ./lib/facet/cloneable.rb
157
- ./lib/facet/command.rb
158
- ./lib/facet/config/datadir.rb
159
- ./lib/facet/continuation/self/create.rb
160
- ./lib/facet/coroutine.rb
161
- ./lib/facet/cookie.rb
162
- ./lib/facet/date/days_in_month.rb
163
- ./lib/facet/date/days_of_month.rb
164
- ./lib/facet/date/stamp.rb
165
- ./lib/facet/date/to_date.rb
166
- ./lib/facet/date/to_s.rb
167
- ./lib/facet/date/to_time.rb
168
- ./lib/facet/crypt.rb
169
- ./lib/facet/dir/self/ancestor.rb
170
- ./lib/facet/dir/self/ascend.rb
171
- ./lib/facet/dir/self/descend.rb
172
- ./lib/facet/dir/self/ls_r.rb
173
- ./lib/facet/dir/self/recurse.rb
174
- ./lib/facet/file/self/read_list.rb
175
- ./lib/facet/file/self/append.rb
176
- ./lib/facet/file/self/create.rb
177
- ./lib/facet/file/self/open_as_string.rb
178
- ./lib/facet/file/self/read_binary.rb
179
- ./lib/facet/file/self/rootname.rb
180
- ./lib/facet/file/self/sanitize.rb
181
- ./lib/facet/file/self/split_all.rb
182
- ./lib/facet/file/self/write.rb
183
- ./lib/facet/dictionary.rb
184
- ./lib/facet/enumerable/ideal_entropy.rb
185
- ./lib/facet/enumerable/accumulate.rb
186
- ./lib/facet/enumerable/collect_if.rb
187
- ./lib/facet/enumerable/commonality.rb
188
- ./lib/facet/enumerable/self/combinations.rb
189
- ./lib/facet/enumerable/self/cross.rb
190
- ./lib/facet/enumerable/collect_with_counter.rb
191
- ./lib/facet/enumerable/collect_with_index.rb
192
- ./lib/facet/enumerable/compact_map.rb
193
- ./lib/facet/enumerable/compact_collect.rb
194
- ./lib/facet/enumerable/count.rb
195
- ./lib/facet/enumerable/cross.rb
196
- ./lib/facet/enumerable/each_by.rb
197
- ./lib/facet/enumerable/each_pair.rb
198
- ./lib/facet/enumerable/each_combination.rb
199
- ./lib/facet/enumerable/each_slice.rb
200
- ./lib/facet/enumerable/each_permutation.rb
201
- ./lib/facet/enumerable/elementwise.rb
202
- ./lib/facet/enumerable/each_unique_pair.rb
203
- ./lib/facet/enumerable/each_with_counter.rb
204
- ./lib/facet/enumerable/entropy.rb
205
- ./lib/facet/enumerable/every.rb
206
- ./lib/facet/enumerable/ew.rb
207
- ./lib/facet/enumerable/filter_map.rb
208
- ./lib/facet/enumerable/filter_collect.rb
209
- ./lib/facet/enumerable/frequency.rb
210
- ./lib/facet/enumerable/find_collisions.rb
211
- ./lib/facet/enumerable/graph.rb
212
- ./lib/facet/enumerable/map_if.rb
213
- ./lib/facet/enumerable/mode.rb
214
- ./lib/facet/enumerable/none.rb
215
- ./lib/facet/enumerable/map_with_counter.rb
216
- ./lib/facet/enumerable/map_with_index.rb
217
- ./lib/facet/enumerable/nonuniq.rb
218
- ./lib/facet/enumerable/occur.rb
219
- ./lib/facet/enumerable/one.rb
220
- ./lib/facet/enumerable/op_pow.rb
221
- ./lib/facet/enumerable/permute.rb
222
- ./lib/facet/enumerable/partition_by.rb
223
- ./lib/facet/enumerable/project.rb
224
- ./lib/facet/enumerable/probability.rb
225
- ./lib/facet/enumerable/to_h.rb
226
- ./lib/facet/enumerable/uniq_by.rb
227
- ./lib/facet/enumerable/where.rb
228
- ./lib/facet/downloader.rb
229
- ./lib/facet/elementor.rb
230
- ./lib/facet/fileutils/split_all.rb
231
- ./lib/facet/fileutils/head.rb
232
- ./lib/facet/fileutils/safe_ln.rb
233
- ./lib/facet/fileutils/slice.rb
234
- ./lib/facet/fileutils/tail.rb
235
- ./lib/facet/fileutils/wc.rb
236
- ./lib/facet/fileutils/whereis.rb
237
- ./lib/facet/fileutils/which.rb
238
- ./lib/facet/enumerablepass.rb
239
- ./lib/facet/expirable.rb
240
- ./lib/facet/filelist.rb
241
- ./lib/facet/float/round_at.rb
242
- ./lib/facet/float/approx.rb
243
- ./lib/facet/float/round_off.rb
244
- ./lib/facet/float/round_to.rb
245
- ./lib/facet/gem/self/active.rb
246
- ./lib/facet/gem/self/gempath.rb
247
- ./lib/facet/gem/self/gemspec.rb
248
- ./lib/facet/hash/has_keys.rb
249
- ./lib/facet/hash/alias.rb
250
- ./lib/facet/hash/at.rb
251
- ./lib/facet/hash/self/zipnew.rb
252
- ./lib/facet/hash/assert_has_keys.rb
253
- ./lib/facet/hash/collate.rb
254
- ./lib/facet/hash/each.rb
255
- ./lib/facet/hash/assert_has_only_keys.rb
256
- ./lib/facet/hash/graph.rb
257
- ./lib/facet/hash/delete_unless.rb
258
- ./lib/facet/hash/each_with_index.rb
259
- ./lib/facet/hash/each_with_key.rb
260
- ./lib/facet/hash/has_only_keys.rb
261
- ./lib/facet/hash/inverse.rb
262
- ./lib/facet/hash/join.rb
263
- ./lib/facet/hash/keys_to_s.rb
264
- ./lib/facet/hash/keys_to_sym.rb
265
- ./lib/facet/hash/op_fetch.rb
266
- ./lib/facet/hash/op_lshift.rb
267
- ./lib/facet/hash/op_store.rb
268
- ./lib/facet/hash/rand_key.rb
269
- ./lib/facet/hash/rand_pair.rb
270
- ./lib/facet/hash/rand_value.rb
271
- ./lib/facet/hash/replace_each.rb
272
- ./lib/facet/hash/shuffle.rb
273
- ./lib/facet/hash/slice.rb
274
- ./lib/facet/hash/stringify_keys.rb
275
- ./lib/facet/hash/swap.rb
276
- ./lib/facet/hash/swapkey.rb
277
- ./lib/facet/hash/to_h.rb
278
- ./lib/facet/hash/to_ostruct.rb
279
- ./lib/facet/hash/to_proc.rb
280
- ./lib/facet/hash/to_ostruct_recurse.rb
281
- ./lib/facet/hash/traverse.rb
282
- ./lib/facet/hash/update_each.rb
283
- ./lib/facet/hash/update_keys.rb
284
- ./lib/facet/hash/update_values.rb
285
- ./lib/facet/hash/variablize_keys.rb
286
- ./lib/facet/hash/weave.rb
287
- ./lib/facet/floatstring.rb
288
- ./lib/facet/functor.rb
289
- ./lib/facet/integer/factorial.rb
290
- ./lib/facet/integer/even.rb
291
- ./lib/facet/integer/fac.rb
292
- ./lib/facet/integer/fact.rb
293
- ./lib/facet/integer/times_collect.rb
294
- ./lib/facet/integer/multiple.rb
295
- ./lib/facet/integer/odd.rb
296
- ./lib/facet/integer/ordinal.rb
297
- ./lib/facet/integer/times_map.rb
298
- ./lib/facet/hashbuilder.rb
299
- ./lib/facet/heap.rb
300
- ./lib/facet/htmlbuilder.rb
301
- ./lib/facet/htmlhelper.rb
302
- ./lib/facet/http.rb
303
- ./lib/facet/httpaccess.rb
304
- ./lib/facet/inflect.rb
305
- ./lib/facet/inheritor.rb
306
- ./lib/facet/kernel/__class__.rb
307
- ./lib/facet/kernel/__DIR__.rb
308
- ./lib/facet/kernel/object_class.rb
309
- ./lib/facet/kernel/__callee__.rb
310
- ./lib/facet/kernel/__get__.rb
311
- ./lib/facet/kernel/__method__.rb
312
- ./lib/facet/kernel/__self__.rb
313
- ./lib/facet/kernel/__set__.rb
314
- ./lib/facet/kernel/as.rb
315
- ./lib/facet/kernel/assign_from.rb
316
- ./lib/facet/kernel/assign_with.rb
317
- ./lib/facet/kernel/autoreload.rb
318
- ./lib/facet/kernel/bool.rb
319
- ./lib/facet/kernel/bug.rb
320
- ./lib/facet/kernel/autoreload_files.rb
321
- ./lib/facet/kernel/autoreload_glob.rb
322
- ./lib/facet/kernel/cache.rb
323
- ./lib/facet/kernel/call_stack.rb
324
- ./lib/facet/kernel/called.rb
325
- ./lib/facet/kernel/complete.rb
326
- ./lib/facet/kernel/constant.rb
327
- ./lib/facet/kernel/copy.rb
328
- ./lib/facet/kernel/deep_copy.rb
329
- ./lib/facet/kernel/demo.rb
330
- ./lib/facet/kernel/eigenclass.rb
331
- ./lib/facet/kernel/false.rb
332
- ./lib/facet/kernel/fn.rb
333
- ./lib/facet/kernel/get_by_id.rb
334
- ./lib/facet/kernel/here.rb
335
- ./lib/facet/kernel/in.rb
336
- ./lib/facet/kernel/instvar.rb
337
- ./lib/facet/kernel/instance_assign.rb
338
- ./lib/facet/kernel/is.rb
339
- ./lib/facet/kernel/maybe.rb
340
- ./lib/facet/kernel/metaclass.rb
341
- ./lib/facet/kernel/method.rb
342
- ./lib/facet/kernel/methods.rb
343
- ./lib/facet/kernel/nack.rb
344
- ./lib/facet/kernel/new.rb
345
- ./lib/facet/kernel/resc.rb
346
- ./lib/facet/kernel/p.rb
347
- ./lib/facet/kernel/object_hexid.rb
348
- ./lib/facet/kernel/op_esc.rb
349
- ./lib/facet/kernel/own.rb
350
- ./lib/facet/kernel/silence_warnings.rb
351
- ./lib/facet/kernel/pp_exception.rb
352
- ./lib/facet/kernel/quaclass.rb
353
- ./lib/facet/kernel/require_all.rb
354
- ./lib/facet/kernel/require_esc.rb
355
- ./lib/facet/kernel/require_facet.rb
356
- ./lib/facet/kernel/require_local.rb
357
- ./lib/facet/kernel/respond.rb
358
- ./lib/facet/kernel/returning.rb
359
- ./lib/facet/kernel/send_as.rb
360
- ./lib/facet/kernel/set_from.rb
361
- ./lib/facet/kernel/set_with.rb
362
- ./lib/facet/kernel/with_accessor.rb
363
- ./lib/facet/kernel/silently.rb
364
- ./lib/facet/kernel/singleton.rb
365
- ./lib/facet/kernel/superior.rb
366
- ./lib/facet/kernel/singleton_class.rb
367
- ./lib/facet/kernel/supermethod.rb
368
- ./lib/facet/kernel/this.rb
369
- ./lib/facet/kernel/to_b.rb
370
- ./lib/facet/kernel/to_bool.rb
371
- ./lib/facet/kernel/true.rb
372
- ./lib/facet/kernel/unuri.rb
373
- ./lib/facet/kernel/uri.rb
374
- ./lib/facet/kernel/val.rb
375
- ./lib/facet/kernel/warn_with_line.rb
376
- ./lib/facet/kernel/with_reader.rb
377
- ./lib/facet/kernel/with_writer.rb
378
- ./lib/facet/interval.rb
379
- ./lib/facet/ioredirect.rb
380
- ./lib/facet/json.rb
381
- ./lib/facet/logger/format.rb
382
- ./lib/facet/logger/format_message.rb
383
- ./lib/facet/lazy.rb
384
- ./lib/facet/lisp.rb
385
- ./lib/facet/matchdata/matchset.rb
386
- ./lib/facet/matchdata/match.rb
387
- ./lib/facet/matchdata/matchtree.rb
388
- ./lib/facet/lisp_format.rb
389
- ./lib/facet/lrucache.rb
390
- ./lib/facet/module/rename_method.rb
391
- ./lib/facet/module/abstract.rb
392
- ./lib/facet/module/ancestor.rb
393
- ./lib/facet/module/attr.rb
394
- ./lib/facet/module/alias_module_function.rb
395
- ./lib/facet/module/attr_query.rb
396
- ./lib/facet/module/attr_setter.rb
397
- ./lib/facet/module/attr_tester.rb
398
- ./lib/facet/module/basename.rb
399
- ./lib/facet/module/attr_validator.rb
400
- ./lib/facet/module/by_name.rb
401
- ./lib/facet/module/class.rb
402
- ./lib/facet/module/clone_using.rb
403
- ./lib/facet/module/class_extension.rb
404
- ./lib/facet/module/clone_removing.rb
405
- ./lib/facet/module/clone_renaming.rb
406
- ./lib/facet/module/dirname.rb
407
- ./lib/facet/module/equate_on.rb
408
- ./lib/facet/module/include_as.rb
409
- ./lib/facet/module/integrate.rb
410
- ./lib/facet/module/initializer.rb
411
- ./lib/facet/module/is.rb
412
- ./lib/facet/module/nodef.rb
413
- ./lib/facet/module/instance_methods.rb
414
- ./lib/facet/module/memoize.rb
415
- ./lib/facet/module/modspace.rb
416
- ./lib/facet/module/namespace.rb
417
- ./lib/facet/module/nesting.rb
418
- ./lib/facet/module/on_included.rb
419
- ./lib/facet/module/redef.rb
420
- ./lib/facet/module/redirect.rb
421
- ./lib/facet/module/redefine_method.rb
422
- ./lib/facet/module/remove.rb
423
- ./lib/facet/module/redirect_method.rb
424
- ./lib/facet/module/rename.rb
425
- ./lib/facet/module/revisal.rb
426
- ./lib/facet/module/shadow_method.rb
427
- ./lib/facet/module/shadow_all.rb
428
- ./lib/facet/module/sort_on.rb
429
- ./lib/facet/module/this.rb
430
- ./lib/facet/module/wrap.rb
431
- ./lib/facet/module/wrap_method.rb
432
- ./lib/facet/proc/to_method.rb
433
- ./lib/facet/proc/compose.rb
434
- ./lib/facet/proc/op_mul.rb
435
- ./lib/facet/mathconstants.rb
436
- ./lib/facet/methodprobe.rb
437
- ./lib/facet/mock.rb
438
- ./lib/facet/nilclass/op_fetch.rb
439
- ./lib/facet/nilclass/blank.rb
440
- ./lib/facet/nilclass/empty.rb
441
- ./lib/facet/nilclass/include.rb
442
- ./lib/facet/nilclass/length.rb
443
- ./lib/facet/nilclass/op_cmp.rb
444
- ./lib/facet/nilclass/size.rb
445
- ./lib/facet/nilclass/succ.rb
446
- ./lib/facet/nilclass/to_h.rb
447
- ./lib/facet/multipliers.rb
448
- ./lib/facet/multiton.rb
449
- ./lib/facet/nackclass.rb
450
- ./lib/facet/numeric/distance.rb
451
- ./lib/facet/numeric/approx.rb
452
- ./lib/facet/numeric/ceil_multiple.rb
453
- ./lib/facet/numeric/pred.rb
454
- ./lib/facet/numeric/succ.rb
455
- ./lib/facet/numeric/to_b.rb
456
- ./lib/facet/ostruct/__merge__.rb
457
- ./lib/facet/ostruct/__table__.rb
458
- ./lib/facet/ostruct/__update__.rb
459
- ./lib/facet/ostruct/instance.rb
460
- ./lib/facet/ostruct/op_fetch.rb
461
- ./lib/facet/ostruct/op_store.rb
462
- ./lib/facet/ostruct/to_h.rb
463
- ./lib/facet/nil_as_emptiness.rb
464
- ./lib/facet/nilcomparable.rb
465
- ./lib/facet/nullclass.rb
466
- ./lib/facet/one.rb
467
- ./lib/facet/pathname/ascend.rb
468
- ./lib/facet/pathname/descend.rb
469
- ./lib/facet/opencascade.rb
470
- ./lib/facet/openobject.rb
471
- ./lib/facet/orderedhash.rb
472
- ./lib/facet/ormsupport.rb
473
- ./lib/facet/ostruct.rb
474
- ./lib/facet/overload.rb
475
- ./lib/facet/paramix.rb
476
- ./lib/facet/pathlist.rb
477
- ./lib/facet/range/to_range.rb
478
- ./lib/facet/range/to_r.rb
479
- ./lib/facet/range/umbrella.rb
480
- ./lib/facet/range/within.rb
481
- ./lib/facet/pool.rb
482
- ./lib/facet/pqueue.rb
483
- ./lib/facet/random.rb
484
- ./lib/facet/preinitialize.rb
485
- ./lib/facet/progressbar.rb
486
- ./lib/facet/promoteself.rb
487
- ./lib/facet/quaternion.rb
488
- ./lib/facet/regexp/to_regexp.rb
489
- ./lib/facet/regexp/arity.rb
490
- ./lib/facet/regexp/to_re.rb
491
- ./lib/facet/recorder.rb
492
- ./lib/facet/reference.rb
493
- ./lib/facet/string/self/patterns.rb
494
- ./lib/facet/string/self/format.rb
495
- ./lib/facet/string/self/interpolate.rb
496
- ./lib/facet/string/self/rand_letter.rb
497
- ./lib/facet/string/self/random.rb
498
- ./lib/facet/string/shift.rb
499
- ./lib/facet/string/align_center.rb
500
- ./lib/facet/string/align_left.rb
501
- ./lib/facet/string/align_right.rb
502
- ./lib/facet/string/at.rb
503
- ./lib/facet/string/at_rand.rb
504
- ./lib/facet/string/basename.rb
505
- ./lib/facet/string/blank.rb
506
- ./lib/facet/string/bracket.rb
507
- ./lib/facet/string/brief.rb
508
- ./lib/facet/string/bytes.rb
509
- ./lib/facet/string/camelcase.rb
510
- ./lib/facet/string/camelize.rb
511
- ./lib/facet/string/capitalized.rb
512
- ./lib/facet/string/chars.rb
513
- ./lib/facet/string/cmp.rb
514
- ./lib/facet/string/demodulize.rb
515
- ./lib/facet/string/dequote.rb
516
- ./lib/facet/string/downcase.rb
517
- ./lib/facet/string/dresner.rb
518
- ./lib/facet/string/each_char.rb
519
- ./lib/facet/string/each_word.rb
520
- ./lib/facet/string/ends_with.rb
521
- ./lib/facet/string/first.rb
522
- ./lib/facet/string/first_char.rb
523
- ./lib/facet/string/fold.rb
524
- ./lib/facet/string/format.rb
525
- ./lib/facet/string/humanize.rb
526
- ./lib/facet/string/indent.rb
527
- ./lib/facet/string/index_all.rb
528
- ./lib/facet/string/last.rb
529
- ./lib/facet/string/last_char.rb
530
- ./lib/facet/string/line_wrap.rb
531
- ./lib/facet/string/lines.rb
532
- ./lib/facet/string/lowercase.rb
533
- ./lib/facet/string/margin.rb
534
- ./lib/facet/string/methodize.rb
535
- ./lib/facet/string/modulize.rb
536
- ./lib/facet/string/mscan.rb
537
- ./lib/facet/string/natcmp.rb
538
- ./lib/facet/string/nchar.rb
539
- ./lib/facet/string/ordinal.rb
540
- ./lib/facet/string/pathize.rb
541
- ./lib/facet/string/plural.rb
542
- ./lib/facet/string/pop.rb
543
- ./lib/facet/string/pot.rb
544
- ./lib/facet/string/pull.rb
545
- ./lib/facet/string/push.rb
546
- ./lib/facet/string/quote.rb
547
- ./lib/facet/string/rand_byte.rb
548
- ./lib/facet/string/rand_index.rb
549
- ./lib/facet/string/range.rb
550
- ./lib/facet/string/range_all.rb
551
- ./lib/facet/string/range_of_line.rb
552
- ./lib/facet/string/regesc.rb
553
- ./lib/facet/string/singular.rb
554
- ./lib/facet/string/shatter.rb
555
- ./lib/facet/string/shuffle.rb
556
- ./lib/facet/string/shell_escape.rb
557
- ./lib/facet/string/similarity.rb
558
- ./lib/facet/string/soundex.rb
559
- ./lib/facet/string/starts_with.rb
560
- ./lib/facet/string/succ.rb
561
- ./lib/facet/string/tab.rb
562
- ./lib/facet/string/tabto.rb
563
- ./lib/facet/string/to_a.rb
564
- ./lib/facet/string/to_b.rb
565
- ./lib/facet/string/to_const.rb
566
- ./lib/facet/string/to_date.rb
567
- ./lib/facet/string/to_proc.rb
568
- ./lib/facet/string/to_re.rb
569
- ./lib/facet/string/to_rx.rb
570
- ./lib/facet/string/to_time.rb
571
- ./lib/facet/string/unbracket.rb
572
- ./lib/facet/string/underscore.rb
573
- ./lib/facet/string/unix_crypt.rb
574
- ./lib/facet/string/unpack.rb
575
- ./lib/facet/string/unshift.rb
576
- ./lib/facet/string/upcase.rb
577
- ./lib/facet/string/uppercase.rb
578
- ./lib/facet/string/whitespace.rb
579
- ./lib/facet/string/word_filter.rb
580
- ./lib/facet/string/word_wrap.rb
581
- ./lib/facet/string/words.rb
582
- ./lib/facet/time/self/days_extrema.rb
583
- ./lib/facet/time/self/stamp.rb
584
- ./lib/facet/time/change.rb
585
- ./lib/facet/time/elapse.rb
586
- ./lib/facet/time/stamp.rb
587
- ./lib/facet/time/to_date.rb
588
- ./lib/facet/time/to_s.rb
589
- ./lib/facet/time/to_time.rb
590
- ./lib/facet/rexmlbuilder.rb
591
- ./lib/facet/rtals.rb
592
- ./lib/facet/semaphore.rb
593
- ./lib/facet/snapshot.rb
594
- ./lib/facet/stateparser.rb
595
- ./lib/facet/statichash.rb
596
- ./lib/facet/symbol/camelcase.rb
597
- ./lib/facet/symbol/camelize.rb
598
- ./lib/facet/symbol/capitalize.rb
599
- ./lib/facet/symbol/capitalized.rb
600
- ./lib/facet/symbol/downcase.rb
601
- ./lib/facet/symbol/not.rb
602
- ./lib/facet/symbol/pad.rb
603
- ./lib/facet/symbol/succ.rb
604
- ./lib/facet/symbol/to_const.rb
605
- ./lib/facet/symbol/to_proc.rb
606
- ./lib/facet/symbol/to_str.rb
607
- ./lib/facet/symbol/underscore.rb
608
- ./lib/facet/symbol/upcase.rb
609
- ./lib/facet/string_as_array.rb
610
- ./lib/facet/unboundmethod/name.rb
611
- ./lib/facet/syncarray.rb
612
- ./lib/facet/synchash.rb
613
- ./lib/facet/system.rb
614
- ./lib/facet/tagiterator.rb
615
- ./lib/facet/taskable.rb
616
- ./lib/facet/timer.rb
617
- ./lib/facet/times.rb
618
- ./lib/facet/tracepoint.rb
619
- ./lib/facet/tuple.rb
620
- ./lib/facet/typecast.rb
621
- ./lib/facet/uninheritable.rb
622
- ./lib/facet/units.rb
623
- ./lib/facet/xmlbuilder.rb
624
- ./lib/facet/xmlhelper.rb
625
- ./lib/facet/xoxo.rb
626
- ./lib/facet/yamlstruct.rb
627
- ./lib/facets/core/array/op_fetch.rb
628
- ./lib/facets/core/array/at_rand.rb
629
- ./lib/facets/core/array/body.rb
630
- ./lib/facets/core/array/delete_values_at.rb
631
- ./lib/facets/core/array/delete_unless.rb
632
- ./lib/facets/core/array/delete_values.rb
633
- ./lib/facets/core/array/first.rb
634
- ./lib/facets/core/array/each_with_key.rb
635
- ./lib/facets/core/array/foot.rb
636
- ./lib/facets/core/array/head.rb
637
- ./lib/facets/core/array/last.rb
638
- ./lib/facets/core/array/join_sentence.rb
639
- ./lib/facets/core/array/merge.rb
640
- ./lib/facets/core/array/last_index.rb
641
- ./lib/facets/core/array/mid.rb
642
- ./lib/facets/core/array/middle.rb
643
- ./lib/facets/core/array/op_store.rb
644
- ./lib/facets/core/array/op_mod.rb
645
- ./lib/facets/core/array/pick.rb
646
- ./lib/facets/core/array/pos.rb
647
- ./lib/facets/core/array/pot.rb
648
- ./lib/facets/core/array/pull.rb
649
- ./lib/facets/core/array/range.rb
650
- ./lib/facets/core/array/rand_index.rb
651
- ./lib/facets/core/array/rand_subset.rb
652
- ./lib/facets/core/array/rotate.rb
653
- ./lib/facets/core/array/select.rb
654
- ./lib/facets/core/array/shuffle.rb
655
- ./lib/facets/core/array/store.rb
656
- ./lib/facets/core/array/tail.rb
657
- ./lib/facets/core/array/thru.rb
658
- ./lib/facets/core/array/to_b.rb
659
- ./lib/facets/core/array/to_h.rb
660
- ./lib/facets/core/array/to_hash.rb
661
- ./lib/facets/core/array/unzip.rb
662
- ./lib/facets/core/array/op_div.rb
663
- ./lib/facets/core/all.rb
664
- ./lib/facets/core/binding/__FILE__.rb
665
- ./lib/facets/core/binding/__DIR__.rb
666
- ./lib/facets/core/binding/self/of_caller.rb
667
- ./lib/facets/core/binding/__LINE__.rb
668
- ./lib/facets/core/binding/call_stack.rb
669
- ./lib/facets/core/binding/called.rb
670
- ./lib/facets/core/binding/caller.rb
671
- ./lib/facets/core/binding/defined.rb
672
- ./lib/facets/core/binding/eval.rb
673
- ./lib/facets/core/binding/method_name.rb
674
- ./lib/facets/core/binding/local_variables.rb
675
- ./lib/facets/core/binding/op_fetch.rb
676
- ./lib/facets/core/binding/op_store.rb
677
- ./lib/facets/core/binding/self.rb
678
- ./lib/facets/core/class/unix_path.rb
679
- ./lib/facets/core/class/by_name.rb
680
- ./lib/facets/core/class/cattr.rb
681
- ./lib/facets/core/class/remove_subclasses.rb
682
- ./lib/facets/core/class/cattr_accessor.rb
683
- ./lib/facets/core/class/cattr_reader.rb
684
- ./lib/facets/core/class/cattr_writer.rb
685
- ./lib/facets/core/class/descendents.rb
686
- ./lib/facets/core/class/method_name.rb
687
- ./lib/facets/core/class/to_proc.rb
688
- ./lib/facets/core/class/remove_descendents.rb
689
- ./lib/facets/core/class/subclasses.rb
690
- ./lib/facets/core/binding.rb
691
- ./lib/facets/core/comparable/at_least.rb
692
- ./lib/facets/core/comparable/at_most.rb
693
- ./lib/facets/core/comparable/cap.rb
694
- ./lib/facets/core/comparable/clip.rb
695
- ./lib/facets/core/comparable/cmp.rb
696
- ./lib/facets/core/config/datadir.rb
697
- ./lib/facets/core/continuation/self/create.rb
698
- ./lib/facets/core/date/days_in_month.rb
699
- ./lib/facets/core/date/days_of_month.rb
700
- ./lib/facets/core/date/stamp.rb
701
- ./lib/facets/core/date/to_date.rb
702
- ./lib/facets/core/date/to_s.rb
703
- ./lib/facets/core/date/to_time.rb
704
- ./lib/facets/core/dir/self/ancestor.rb
705
- ./lib/facets/core/dir/self/ascend.rb
706
- ./lib/facets/core/dir/self/descend.rb
707
- ./lib/facets/core/dir/self/ls_r.rb
708
- ./lib/facets/core/dir/self/recurse.rb
709
- ./lib/facets/core/enumerable/ideal_entropy.rb
710
- ./lib/facets/core/enumerable/accumulate.rb
711
- ./lib/facets/core/enumerable/collect_if.rb
712
- ./lib/facets/core/enumerable/commonality.rb
713
- ./lib/facets/core/enumerable/self/combinations.rb
714
- ./lib/facets/core/enumerable/self/cross.rb
715
- ./lib/facets/core/enumerable/collect_with_counter.rb
716
- ./lib/facets/core/enumerable/collect_with_index.rb
717
- ./lib/facets/core/enumerable/compact_map.rb
718
- ./lib/facets/core/enumerable/compact_collect.rb
719
- ./lib/facets/core/enumerable/count.rb
720
- ./lib/facets/core/enumerable/cross.rb
721
- ./lib/facets/core/enumerable/each_by.rb
722
- ./lib/facets/core/enumerable/each_pair.rb
723
- ./lib/facets/core/enumerable/each_combination.rb
724
- ./lib/facets/core/enumerable/each_slice.rb
725
- ./lib/facets/core/enumerable/each_permutation.rb
726
- ./lib/facets/core/enumerable/elementwise.rb
727
- ./lib/facets/core/enumerable/each_unique_pair.rb
728
- ./lib/facets/core/enumerable/each_with_counter.rb
729
- ./lib/facets/core/enumerable/entropy.rb
730
- ./lib/facets/core/enumerable/every.rb
731
- ./lib/facets/core/enumerable/ew.rb
732
- ./lib/facets/core/enumerable/filter_map.rb
733
- ./lib/facets/core/enumerable/filter_collect.rb
734
- ./lib/facets/core/enumerable/frequency.rb
735
- ./lib/facets/core/enumerable/find_collisions.rb
736
- ./lib/facets/core/enumerable/graph.rb
737
- ./lib/facets/core/enumerable/map_if.rb
738
- ./lib/facets/core/enumerable/mode.rb
739
- ./lib/facets/core/enumerable/none.rb
740
- ./lib/facets/core/enumerable/map_with_counter.rb
741
- ./lib/facets/core/enumerable/map_with_index.rb
742
- ./lib/facets/core/enumerable/nonuniq.rb
743
- ./lib/facets/core/enumerable/occur.rb
744
- ./lib/facets/core/enumerable/one.rb
745
- ./lib/facets/core/enumerable/op_pow.rb
746
- ./lib/facets/core/enumerable/permute.rb
747
- ./lib/facets/core/enumerable/partition_by.rb
748
- ./lib/facets/core/enumerable/project.rb
749
- ./lib/facets/core/enumerable/probability.rb
750
- ./lib/facets/core/enumerable/to_h.rb
751
- ./lib/facets/core/enumerable/uniq_by.rb
752
- ./lib/facets/core/enumerable/where.rb
753
- ./lib/facets/core/enumerable/cascade.rb
754
- ./lib/facets/core/enumerable/divide.rb
755
- ./lib/facets/core/file/self/read_list.rb
756
- ./lib/facets/core/file/self/append.rb
757
- ./lib/facets/core/file/self/create.rb
758
- ./lib/facets/core/file/self/open_as_string.rb
759
- ./lib/facets/core/file/self/read_binary.rb
760
- ./lib/facets/core/file/self/rootname.rb
761
- ./lib/facets/core/file/self/sanitize.rb
762
- ./lib/facets/core/file/self/split_all.rb
763
- ./lib/facets/core/file/self/write.rb
764
- ./lib/facets/core/fileutils/split_all.rb
765
- ./lib/facets/core/fileutils/head.rb
766
- ./lib/facets/core/fileutils/safe_ln.rb
767
- ./lib/facets/core/fileutils/slice.rb
768
- ./lib/facets/core/fileutils/tail.rb
769
- ./lib/facets/core/fileutils/wc.rb
770
- ./lib/facets/core/fileutils/whereis.rb
771
- ./lib/facets/core/fileutils/which.rb
772
- ./lib/facets/core/float/round_at.rb
773
- ./lib/facets/core/float/approx.rb
774
- ./lib/facets/core/float/round_off.rb
775
- ./lib/facets/core/float/round_to.rb
776
- ./lib/facets/core/gem/self/active.rb
777
- ./lib/facets/core/gem/self/gempath.rb
778
- ./lib/facets/core/gem/self/gemspec.rb
779
- ./lib/facets/core/hash/has_keys.rb
780
- ./lib/facets/core/hash/alias.rb
781
- ./lib/facets/core/hash/at.rb
782
- ./lib/facets/core/hash/self/zipnew.rb
783
- ./lib/facets/core/hash/self/auto.rb
784
- ./lib/facets/core/hash/assert_has_keys.rb
785
- ./lib/facets/core/hash/collate.rb
786
- ./lib/facets/core/hash/each.rb
787
- ./lib/facets/core/hash/assert_has_only_keys.rb
788
- ./lib/facets/core/hash/graph.rb
789
- ./lib/facets/core/hash/delete_unless.rb
790
- ./lib/facets/core/hash/each_with_index.rb
791
- ./lib/facets/core/hash/each_with_key.rb
792
- ./lib/facets/core/hash/having_aquisition.rb
793
- ./lib/facets/core/hash/has_only_keys.rb
794
- ./lib/facets/core/hash/inverse.rb
795
- ./lib/facets/core/hash/join.rb
796
- ./lib/facets/core/hash/to_struct.rb
797
- ./lib/facets/core/hash/keys_to_s.rb
798
- ./lib/facets/core/hash/keys_to_sym.rb
799
- ./lib/facets/core/hash/op_fetch.rb
800
- ./lib/facets/core/hash/op_lshift.rb
801
- ./lib/facets/core/hash/op_store.rb
802
- ./lib/facets/core/hash/rand_key.rb
803
- ./lib/facets/core/hash/rand_pair.rb
804
- ./lib/facets/core/hash/rand_value.rb
805
- ./lib/facets/core/hash/replace_each.rb
806
- ./lib/facets/core/hash/shuffle.rb
807
- ./lib/facets/core/hash/slice.rb
808
- ./lib/facets/core/hash/stringify_keys.rb
809
- ./lib/facets/core/hash/swap.rb
810
- ./lib/facets/core/hash/swapkey.rb
811
- ./lib/facets/core/hash/diff.rb
812
- ./lib/facets/core/hash/to_h.rb
813
- ./lib/facets/core/hash/to_ostruct.rb
814
- ./lib/facets/core/hash/to_proc.rb
815
- ./lib/facets/core/hash/to_ostruct_recurse.rb
816
- ./lib/facets/core/hash/traverse.rb
817
- ./lib/facets/core/hash/update_each.rb
818
- ./lib/facets/core/hash/update_keys.rb
819
- ./lib/facets/core/hash/update_values.rb
820
- ./lib/facets/core/hash/variablize_keys.rb
821
- ./lib/facets/core/hash/weave.rb
822
- ./lib/facets/core/hash/op_div.rb
823
- ./lib/facets/core/hash/having_fallback.rb
824
- ./lib/facets/core/hash/normalize_keys.rb
825
- ./lib/facets/core/hash/symbolize_keys.rb
826
- ./lib/facets/core/hash/reverse_merge.rb
827
- ./lib/facets/core/hash/reverse_update.rb
828
- ./lib/facets/core/integer/factorial.rb
829
- ./lib/facets/core/integer/even.rb
830
- ./lib/facets/core/integer/fac.rb
831
- ./lib/facets/core/integer/fact.rb
832
- ./lib/facets/core/integer/times_collect.rb
833
- ./lib/facets/core/integer/multiple.rb
834
- ./lib/facets/core/integer/odd.rb
835
- ./lib/facets/core/integer/ordinal.rb
836
- ./lib/facets/core/integer/times_map.rb
837
- ./lib/facets/core/inflect.rb
838
- ./lib/facets/core/kernel/__class__.rb
839
- ./lib/facets/core/kernel/__DIR__.rb
840
- ./lib/facets/core/kernel/object_class.rb
841
- ./lib/facets/core/kernel/__callee__.rb
842
- ./lib/facets/core/kernel/__get__.rb
843
- ./lib/facets/core/kernel/__method__.rb
844
- ./lib/facets/core/kernel/__self__.rb
845
- ./lib/facets/core/kernel/__set__.rb
846
- ./lib/facets/core/kernel/as.rb
847
- ./lib/facets/core/kernel/assign_from.rb
848
- ./lib/facets/core/kernel/assign_with.rb
849
- ./lib/facets/core/kernel/autoreload.rb
850
- ./lib/facets/core/kernel/bool.rb
851
- ./lib/facets/core/kernel/bug.rb
852
- ./lib/facets/core/kernel/autoreload_files.rb
853
- ./lib/facets/core/kernel/autoreload_glob.rb
854
- ./lib/facets/core/kernel/cache.rb
855
- ./lib/facets/core/kernel/call_stack.rb
856
- ./lib/facets/core/kernel/called.rb
857
- ./lib/facets/core/kernel/complete.rb
858
- ./lib/facets/core/kernel/constant.rb
859
- ./lib/facets/core/kernel/copy.rb
860
- ./lib/facets/core/kernel/deep_copy.rb
861
- ./lib/facets/core/kernel/demo.rb
862
- ./lib/facets/core/kernel/eigenclass.rb
863
- ./lib/facets/core/kernel/false.rb
864
- ./lib/facets/core/kernel/fn.rb
865
- ./lib/facets/core/kernel/get_by_id.rb
866
- ./lib/facets/core/kernel/here.rb
867
- ./lib/facets/core/kernel/in.rb
868
- ./lib/facets/core/kernel/instvar.rb
869
- ./lib/facets/core/kernel/instance_assign.rb
870
- ./lib/facets/core/kernel/is.rb
871
- ./lib/facets/core/kernel/maybe.rb
872
- ./lib/facets/core/kernel/metaclass.rb
873
- ./lib/facets/core/kernel/method.rb
874
- ./lib/facets/core/kernel/methods.rb
875
- ./lib/facets/core/kernel/nack.rb
876
- ./lib/facets/core/kernel/new.rb
877
- ./lib/facets/core/kernel/resc.rb
878
- ./lib/facets/core/kernel/p.rb
879
- ./lib/facets/core/kernel/object_hexid.rb
880
- ./lib/facets/core/kernel/op_esc.rb
881
- ./lib/facets/core/kernel/own.rb
882
- ./lib/facets/core/kernel/silence_warnings.rb
883
- ./lib/facets/core/kernel/pp_exception.rb
884
- ./lib/facets/core/kernel/quaclass.rb
885
- ./lib/facets/core/kernel/require_all.rb
886
- ./lib/facets/core/kernel/require_esc.rb
887
- ./lib/facets/core/kernel/require_facet.rb
888
- ./lib/facets/core/kernel/require_local.rb
889
- ./lib/facets/core/kernel/respond.rb
890
- ./lib/facets/core/kernel/returning.rb
891
- ./lib/facets/core/kernel/send_as.rb
892
- ./lib/facets/core/kernel/set_from.rb
893
- ./lib/facets/core/kernel/set_with.rb
894
- ./lib/facets/core/kernel/with_accessor.rb
895
- ./lib/facets/core/kernel/silently.rb
896
- ./lib/facets/core/kernel/singleton.rb
897
- ./lib/facets/core/kernel/superior.rb
898
- ./lib/facets/core/kernel/singleton_class.rb
899
- ./lib/facets/core/kernel/supermethod.rb
900
- ./lib/facets/core/kernel/this.rb
901
- ./lib/facets/core/kernel/to_b.rb
902
- ./lib/facets/core/kernel/to_bool.rb
903
- ./lib/facets/core/kernel/true.rb
904
- ./lib/facets/core/kernel/unuri.rb
905
- ./lib/facets/core/kernel/uri.rb
906
- ./lib/facets/core/kernel/val.rb
907
- ./lib/facets/core/kernel/meta.rb
908
- ./lib/facets/core/kernel/warn_with_line.rb
909
- ./lib/facets/core/kernel/with_reader.rb
910
- ./lib/facets/core/kernel/with_writer.rb
911
- ./lib/facets/core/kernel/object_clone.rb
912
- ./lib/facets/core/kernel/object_dup.rb
913
- ./lib/facets/core/kernel/instance_exec.rb
914
- ./lib/facets/core/kernel/to_data.rb
915
- ./lib/facets/core/kernel/deep_clone.rb
916
- ./lib/facets/core/logger/format.rb
917
- ./lib/facets/core/logger/format_message.rb
918
- ./lib/facets/core/matchdata/matchset.rb
919
- ./lib/facets/core/matchdata/match.rb
920
- ./lib/facets/core/matchdata/matchtree.rb
921
- ./lib/facets/core/module/rename_method.rb
922
- ./lib/facets/core/module/abstract.rb
923
- ./lib/facets/core/module/ancestor.rb
924
- ./lib/facets/core/module/attr.rb
925
- ./lib/facets/core/module/alias_module_function.rb
926
- ./lib/facets/core/module/attr_query.rb
927
- ./lib/facets/core/module/attr_setter.rb
928
- ./lib/facets/core/module/attr_tester.rb
929
- ./lib/facets/core/module/basename.rb
930
- ./lib/facets/core/module/attr_validator.rb
931
- ./lib/facets/core/module/by_name.rb
932
- ./lib/facets/core/module/class.rb
933
- ./lib/facets/core/module/clone_using.rb
934
- ./lib/facets/core/module/class_extension.rb
935
- ./lib/facets/core/module/clone_removing.rb
936
- ./lib/facets/core/module/clone_renaming.rb
937
- ./lib/facets/core/module/dirname.rb
938
- ./lib/facets/core/module/equate_on.rb
939
- ./lib/facets/core/module/include_as.rb
940
- ./lib/facets/core/module/integrate.rb
941
- ./lib/facets/core/module/initializer.rb
942
- ./lib/facets/core/module/is.rb
943
- ./lib/facets/core/module/nodef.rb
944
- ./lib/facets/core/module/instance_methods.rb
945
- ./lib/facets/core/module/memoize.rb
946
- ./lib/facets/core/module/modspace.rb
947
- ./lib/facets/core/module/namespace.rb
948
- ./lib/facets/core/module/nesting.rb
949
- ./lib/facets/core/module/on_included.rb
950
- ./lib/facets/core/module/redef.rb
951
- ./lib/facets/core/module/redirect.rb
952
- ./lib/facets/core/module/redefine_method.rb
953
- ./lib/facets/core/module/remove.rb
954
- ./lib/facets/core/module/redirect_method.rb
955
- ./lib/facets/core/module/rename.rb
956
- ./lib/facets/core/module/revisal.rb
957
- ./lib/facets/core/module/shadow_method.rb
958
- ./lib/facets/core/module/shadow_all.rb
959
- ./lib/facets/core/module/sort_on.rb
960
- ./lib/facets/core/module/this.rb
961
- ./lib/facets/core/module/wrap.rb
962
- ./lib/facets/core/module/wrap_method.rb
963
- ./lib/facets/core/module/alias_method_chain.rb
964
- ./lib/facets/core/nilclass/op_fetch.rb
965
- ./lib/facets/core/nilclass/blank.rb
966
- ./lib/facets/core/nilclass/empty.rb
967
- ./lib/facets/core/nilclass/include.rb
968
- ./lib/facets/core/nilclass/length.rb
969
- ./lib/facets/core/nilclass/op_cmp.rb
970
- ./lib/facets/core/nilclass/size.rb
971
- ./lib/facets/core/nilclass/succ.rb
972
- ./lib/facets/core/nilclass/to_h.rb
973
- ./lib/facets/core/nilclass/status.rb
974
- ./lib/facets/core/numeric/distance.rb
975
- ./lib/facets/core/numeric/approx.rb
976
- ./lib/facets/core/numeric/ceil_multiple.rb
977
- ./lib/facets/core/numeric/pred.rb
978
- ./lib/facets/core/numeric/succ.rb
979
- ./lib/facets/core/numeric/to_b.rb
980
- ./lib/facets/core/nil_as_emptiness.rb
981
- ./lib/facets/core/ostruct/__merge__.rb
982
- ./lib/facets/core/ostruct/__table__.rb
983
- ./lib/facets/core/ostruct/__update__.rb
984
- ./lib/facets/core/ostruct/instance.rb
985
- ./lib/facets/core/ostruct/op_fetch.rb
986
- ./lib/facets/core/ostruct/op_store.rb
987
- ./lib/facets/core/ostruct/to_h.rb
988
- ./lib/facets/core/pathname/ascend.rb
989
- ./lib/facets/core/pathname/descend.rb
990
- ./lib/facets/core/ostruct.rb
991
- ./lib/facets/core/proc/to_method.rb
992
- ./lib/facets/core/proc/compose.rb
993
- ./lib/facets/core/proc/op_mul.rb
994
- ./lib/facets/core/range/to_range.rb
995
- ./lib/facets/core/range/to_r.rb
996
- ./lib/facets/core/range/umbrella.rb
997
- ./lib/facets/core/range/within.rb
998
- ./lib/facets/core/random.rb
999
- ./lib/facets/core/regexp/to_regexp.rb
1000
- ./lib/facets/core/regexp/arity.rb
1001
- ./lib/facets/core/regexp/to_re.rb
1002
- ./lib/facets/core/string/self/patterns.rb
1003
- ./lib/facets/core/string/self/format.rb
1004
- ./lib/facets/core/string/self/interpolate.rb
1005
- ./lib/facets/core/string/self/rand_letter.rb
1006
- ./lib/facets/core/string/self/random.rb
1007
- ./lib/facets/core/string/shift.rb
1008
- ./lib/facets/core/string/align_center.rb
1009
- ./lib/facets/core/string/align_left.rb
1010
- ./lib/facets/core/string/align_right.rb
1011
- ./lib/facets/core/string/at.rb
1012
- ./lib/facets/core/string/at_rand.rb
1013
- ./lib/facets/core/string/basename.rb
1014
- ./lib/facets/core/string/blank.rb
1015
- ./lib/facets/core/string/bracket.rb
1016
- ./lib/facets/core/string/brief.rb
1017
- ./lib/facets/core/string/bytes.rb
1018
- ./lib/facets/core/string/camelcase.rb
1019
- ./lib/facets/core/string/camelize.rb
1020
- ./lib/facets/core/string/capitalized.rb
1021
- ./lib/facets/core/string/chars.rb
1022
- ./lib/facets/core/string/cmp.rb
1023
- ./lib/facets/core/string/demodulize.rb
1024
- ./lib/facets/core/string/dequote.rb
1025
- ./lib/facets/core/string/downcase.rb
1026
- ./lib/facets/core/string/dresner.rb
1027
- ./lib/facets/core/string/each_char.rb
1028
- ./lib/facets/core/string/each_word.rb
1029
- ./lib/facets/core/string/ends_with.rb
1030
- ./lib/facets/core/string/first.rb
1031
- ./lib/facets/core/string/first_char.rb
1032
- ./lib/facets/core/string/fold.rb
1033
- ./lib/facets/core/string/format.rb
1034
- ./lib/facets/core/string/humanize.rb
1035
- ./lib/facets/core/string/indent.rb
1036
- ./lib/facets/core/string/index_all.rb
1037
- ./lib/facets/core/string/last.rb
1038
- ./lib/facets/core/string/last_char.rb
1039
- ./lib/facets/core/string/line_wrap.rb
1040
- ./lib/facets/core/string/lines.rb
1041
- ./lib/facets/core/string/lowercase.rb
1042
- ./lib/facets/core/string/margin.rb
1043
- ./lib/facets/core/string/methodize.rb
1044
- ./lib/facets/core/string/modulize.rb
1045
- ./lib/facets/core/string/mscan.rb
1046
- ./lib/facets/core/string/natcmp.rb
1047
- ./lib/facets/core/string/nchar.rb
1048
- ./lib/facets/core/string/ordinal.rb
1049
- ./lib/facets/core/string/pathize.rb
1050
- ./lib/facets/core/string/plural.rb
1051
- ./lib/facets/core/string/pop.rb
1052
- ./lib/facets/core/string/pot.rb
1053
- ./lib/facets/core/string/pull.rb
1054
- ./lib/facets/core/string/push.rb
1055
- ./lib/facets/core/string/quote.rb
1056
- ./lib/facets/core/string/rand_byte.rb
1057
- ./lib/facets/core/string/rand_index.rb
1058
- ./lib/facets/core/string/range.rb
1059
- ./lib/facets/core/string/range_all.rb
1060
- ./lib/facets/core/string/range_of_line.rb
1061
- ./lib/facets/core/string/regesc.rb
1062
- ./lib/facets/core/string/singular.rb
1063
- ./lib/facets/core/string/shatter.rb
1064
- ./lib/facets/core/string/shuffle.rb
1065
- ./lib/facets/core/string/shell_escape.rb
1066
- ./lib/facets/core/string/similarity.rb
1067
- ./lib/facets/core/string/soundex.rb
1068
- ./lib/facets/core/string/starts_with.rb
1069
- ./lib/facets/core/string/succ.rb
1070
- ./lib/facets/core/string/tab.rb
1071
- ./lib/facets/core/string/tabto.rb
1072
- ./lib/facets/core/string/to_a.rb
1073
- ./lib/facets/core/string/to_b.rb
1074
- ./lib/facets/core/string/to_const.rb
1075
- ./lib/facets/core/string/to_date.rb
1076
- ./lib/facets/core/string/to_proc.rb
1077
- ./lib/facets/core/string/to_re.rb
1078
- ./lib/facets/core/string/to_rx.rb
1079
- ./lib/facets/core/string/to_time.rb
1080
- ./lib/facets/core/string/unbracket.rb
1081
- ./lib/facets/core/string/underscore.rb
1082
- ./lib/facets/core/string/unix_crypt.rb
1083
- ./lib/facets/core/string/unpack.rb
1084
- ./lib/facets/core/string/unshift.rb
1085
- ./lib/facets/core/string/upcase.rb
1086
- ./lib/facets/core/string/uppercase.rb
1087
- ./lib/facets/core/string/whitespace.rb
1088
- ./lib/facets/core/string/word_filter.rb
1089
- ./lib/facets/core/string/word_wrap.rb
1090
- ./lib/facets/core/string/words.rb
1091
- ./lib/facets/core/string/divide.rb
1092
- ./lib/facets/core/symbol/self/generate.rb
1093
- ./lib/facets/core/symbol/camelcase.rb
1094
- ./lib/facets/core/symbol/camelize.rb
1095
- ./lib/facets/core/symbol/capitalize.rb
1096
- ./lib/facets/core/symbol/capitalized.rb
1097
- ./lib/facets/core/symbol/downcase.rb
1098
- ./lib/facets/core/symbol/not.rb
1099
- ./lib/facets/core/symbol/pad.rb
1100
- ./lib/facets/core/symbol/succ.rb
1101
- ./lib/facets/core/symbol/to_const.rb
1102
- ./lib/facets/core/symbol/to_proc.rb
1103
- ./lib/facets/core/symbol/to_str.rb
1104
- ./lib/facets/core/symbol/underscore.rb
1105
- ./lib/facets/core/symbol/upcase.rb
1106
- ./lib/facets/core/time/self/days_extrema.rb
1107
- ./lib/facets/core/time/self/stamp.rb
1108
- ./lib/facets/core/time/change.rb
1109
- ./lib/facets/core/time/elapse.rb
1110
- ./lib/facets/core/time/stamp.rb
1111
- ./lib/facets/core/time/to_date.rb
1112
- ./lib/facets/core/time/to_s.rb
1113
- ./lib/facets/core/time/to_time.rb
1114
- ./lib/facets/core/string_as_array.rb
1115
- ./lib/facets/core/unboundmethod/name.rb
1116
- ./lib/facets/more/predicate.rb
1117
- ./lib/facets/more/instance_intercept.rb
1118
- ./lib/facets/more/eventhook.rb
1119
- ./lib/facets/more/autoarray.rb
1120
- ./lib/facets/more/ansicode.rb
1121
- ./lib/facets/more/annattr.rb
1122
- ./lib/facets/more/binaryreader.rb
1123
- ./lib/facets/more/annotation.rb
1124
- ./lib/facets/more/aspects.rb
1125
- ./lib/facets/more/association.rb
1126
- ./lib/facets/more/basicobject.rb
1127
- ./lib/facets/more/bbcode.rb
1128
- ./lib/facets/more/cloneable.rb
1129
- ./lib/facets/more/bitmask.rb
1130
- ./lib/facets/more/builderobject.rb
1131
- ./lib/facets/more/methodfilter.rb
1132
- ./lib/facets/more/bytes.rb
1133
- ./lib/facets/more/settings.rb
1134
- ./lib/facets/more/classmethods.rb
1135
- ./lib/facets/more/command.rb
1136
- ./lib/facets/more/cookie.rb
1137
- ./lib/facets/more/coroutine.rb
1138
- ./lib/facets/more/crypt.rb
1139
- ./lib/facets/more/dictionary.rb
1140
- ./lib/facets/more/downloader.rb
1141
- ./lib/facets/more/elementor.rb
1142
- ./lib/facets/more/enumerablepass.rb
1143
- ./lib/facets/more/expirable.rb
1144
- ./lib/facets/more/filelist.rb
1145
- ./lib/facets/more/floatstring.rb
1146
- ./lib/facets/more/functor.rb
1147
- ./lib/facets/more/hashbuilder.rb
1148
- ./lib/facets/more/heap.rb
1149
- ./lib/facets/more/htmlbuilder.rb
1150
- ./lib/facets/more/htmlhelper.rb
1151
- ./lib/facets/more/http.rb
1152
- ./lib/facets/more/httpaccess.rb
1153
- ./lib/facets/more/inheritor.rb
1154
- ./lib/facets/more/interval.rb
1155
- ./lib/facets/more/ioredirect.rb
1156
- ./lib/facets/more/json.rb
1157
- ./lib/facets/more/lazy.rb
1158
- ./lib/facets/more/lisp.rb
1159
- ./lib/facets/more/lisp_format.rb
1160
- ./lib/facets/more/lrucache.rb
1161
- ./lib/facets/more/mathconstants.rb
1162
- ./lib/facets/more/methodprobe.rb
1163
- ./lib/facets/more/mock.rb
1164
- ./lib/facets/more/multipliers.rb
1165
- ./lib/facets/more/multiton.rb
1166
- ./lib/facets/more/nackclass.rb
1167
- ./lib/facets/more/nilcomparable.rb
1168
- ./lib/facets/more/nullclass.rb
1169
- ./lib/facets/more/one.rb
1170
- ./lib/facets/more/opencascade.rb
1171
- ./lib/facets/more/openobject.rb
1172
- ./lib/facets/more/orderedhash.rb
1173
- ./lib/facets/more/ormsupport.rb
1174
- ./lib/facets/more/overload.rb
1175
- ./lib/facets/more/paramix.rb
1176
- ./lib/facets/more/pathlist.rb
1177
- ./lib/facets/more/pool.rb
1178
- ./lib/facets/more/pqueue.rb
1179
- ./lib/facets/more/preinitialize.rb
1180
- ./lib/facets/more/progressbar.rb
1181
- ./lib/facets/more/promoteself.rb
1182
- ./lib/facets/more/quaternion.rb
1183
- ./lib/facets/more/recorder.rb
1184
- ./lib/facets/more/reference.rb
1185
- ./lib/facets/more/rexmlbuilder.rb
1186
- ./lib/facets/more/rtals.rb
1187
- ./lib/facets/more/semaphore.rb
1188
- ./lib/facets/more/snapshot.rb
1189
- ./lib/facets/more/stateparser.rb
1190
- ./lib/facets/more/statichash.rb
1191
- ./lib/facets/more/syncarray.rb
1192
- ./lib/facets/more/synchash.rb
1193
- ./lib/facets/more/system.rb
1194
- ./lib/facets/more/tagiterator.rb
1195
- ./lib/facets/more/taskable.rb
1196
- ./lib/facets/more/timer.rb
1197
- ./lib/facets/more/times.rb
1198
- ./lib/facets/more/tracepoint.rb
1199
- ./lib/facets/more/tuple.rb
1200
- ./lib/facets/more/typecast.rb
1201
- ./lib/facets/more/uninheritable.rb
1202
- ./lib/facets/more/units.rb
1203
- ./lib/facets/more/xmlbuilder.rb
1204
- ./lib/facets/more/xmlhelper.rb
1205
- ./lib/facets/more/xoxo.rb
1206
- ./lib/facets/more/yamlstruct.rb
1207
- ./lib/facets/explore/rwdelegator.rb
1208
- ./lib/facets.rb
1209
- ./doc/AUTHORS