facets 1.4.5 → 1.7.0
Sign up to get free protection for your applications and to get access to all the features.
- data/demo/tkxml/helloworld.rb +32 -0
- data/demo/tkxml/ui.xml +32 -0
- data/doc/AUTHORS +2 -0
- data/doc/ChangeLog +92 -337
- data/doc/ChangeLog.pre1.5 +337 -0
- data/doc/LATEST +41 -0
- data/doc/manifest +1209 -0
- data/lib/facet/array/op_div.rb +1 -0
- data/lib/facet/autoarray.rb +1 -0
- data/lib/facet/cut.rb +1 -0
- data/lib/facet/enumerable/divide.rb +1 -0
- data/lib/facet/eventhook.rb +1 -0
- data/lib/facet/hash/diff.rb +1 -0
- data/lib/facet/hash/having_aquisition.rb +1 -0
- data/lib/facet/hash/having_fallback.rb +1 -0
- data/lib/facet/hash/normalize_keys.rb +1 -0
- data/lib/facet/hash/op_div.rb +1 -0
- data/lib/facet/hash/reverse_merge.rb +1 -0
- data/lib/facet/hash/reverse_update.rb +1 -0
- data/lib/facet/hash/self/auto.rb +1 -0
- data/lib/facet/hash/symbolize_keys.rb +1 -0
- data/lib/facet/hash/to_struct.rb +1 -0
- data/lib/facet/infinity.rb +1 -0
- data/lib/facet/instance_intercept.rb +1 -0
- data/lib/facet/integer/each.rb +1 -0
- data/lib/facet/integer/of.rb +1 -0
- data/lib/facet/kernel/callee.rb +1 -0
- data/lib/facet/kernel/deep_clone.rb +1 -0
- data/lib/facet/kernel/instance_exec.rb +1 -0
- data/lib/facet/kernel/meta.rb +1 -0
- data/lib/facet/kernel/object_clone.rb +1 -0
- data/lib/facet/kernel/object_dup.rb +1 -0
- data/lib/facet/kernel/to_data.rb +1 -0
- data/lib/facet/methodfilter.rb +1 -0
- data/lib/facet/numeric/distance.rb +1 -0
- data/lib/facet/predicate.rb +1 -0
- data/lib/facet/rwdelegator.rb +1 -0
- data/lib/facet/settings.rb +1 -0
- data/lib/facet/string/divide.rb +1 -0
- data/lib/facet/symbol/self/generate.rb +1 -0
- data/lib/facet/tkxml.rb +1 -0
- data/lib/facets.rb +4 -2
- data/lib/facets/core/array/op_div.rb +11 -0
- data/lib/facets/core/enumerable/divide.rb +20 -0
- data/lib/facets/core/hash/diff.rb +8 -0
- data/lib/facets/core/hash/having_aquisition.rb +37 -0
- data/lib/facets/core/hash/having_fallback.rb +28 -0
- data/lib/facets/core/hash/keys_to_s.rb +2 -80
- data/lib/facets/core/hash/keys_to_sym.rb +2 -91
- data/lib/facets/core/hash/normalize_keys.rb +65 -0
- data/lib/facets/core/hash/op_div.rb +8 -0
- data/lib/facets/core/hash/reverse_merge.rb +22 -0
- data/lib/facets/core/hash/reverse_update.rb +3 -0
- data/lib/facets/core/hash/self/auto.rb +28 -0
- data/lib/facets/core/hash/stringify_keys.rb +74 -2
- data/lib/facets/core/hash/symbolize_keys.rb +87 -0
- data/lib/facets/core/hash/to_struct.rb +16 -0
- data/lib/facets/core/integer/each.rb +9 -0
- data/lib/facets/core/integer/of.rb +37 -0
- data/lib/facets/core/kernel/__method__.rb +2 -45
- data/lib/facets/core/kernel/callee.rb +46 -0
- data/lib/facets/core/kernel/deep_clone.rb +50 -0
- data/lib/facets/core/kernel/instance_exec.rb +58 -0
- data/lib/facets/core/kernel/meta.rb +21 -0
- data/lib/facets/core/kernel/object_clone.rb +4 -0
- data/lib/facets/core/kernel/object_dup.rb +2 -0
- data/lib/facets/core/kernel/to_data.rb +114 -0
- data/lib/facets/core/module/alias_method_chain.rb +1 -1
- data/lib/facets/core/module/wrap_method.rb +2 -2
- data/lib/facets/core/nilclass/status.rb +4 -4
- data/lib/facets/core/numeric/distance.rb +37 -0
- data/lib/facets/core/proc/compose.rb +3 -21
- data/lib/facets/core/proc/op_mul.rb +51 -2
- data/lib/facets/core/proc/to_method.rb +37 -36
- data/lib/facets/core/string/divide.rb +43 -0
- data/lib/facets/core/string/singular.rb +152 -67
- data/lib/facets/core/symbol/self/generate.rb +18 -0
- data/lib/facets/more/annattr.rb +4 -4
- data/lib/facets/more/annotation.rb +359 -296
- data/lib/facets/more/aspects.rb +1 -1
- data/lib/facets/more/autoarray.rb +82 -0
- data/lib/facets/more/builderobject.rb +5 -3
- data/lib/facets/more/command.rb +2 -0
- data/lib/facets/more/cut.rb +507 -0
- data/lib/facets/more/dictionary.rb +64 -30
- data/lib/facets/more/downloader.rb +6 -3
- data/lib/facets/more/elementor.rb +26 -16
- data/lib/facets/more/eventhook.rb +113 -0
- data/lib/facets/more/filelist.rb +8 -0
- data/lib/facets/more/functor.rb +28 -11
- data/lib/facets/more/hashbuilder.rb +7 -3
- data/lib/facets/more/infinity.rb +221 -0
- data/{snip/more/aspect.rb → lib/facets/more/instance_intercept.rb} +56 -20
- data/lib/facets/more/json.rb +5 -5
- data/lib/facets/more/methodfilter.rb +118 -0
- data/lib/facets/more/opencascade.rb +35 -66
- data/lib/facets/more/openobject.rb +213 -162
- data/lib/facets/more/orderedhash.rb +7 -0
- data/{snip → lib/facets}/more/predicate.rb +3 -0
- data/lib/facets/more/recorder.rb +9 -3
- data/lib/facets/more/reference.rb +7 -2
- data/lib/facets/more/rexmlbuilder.rb +7 -2
- data/lib/facets/more/rwdelegator.rb +51 -0
- data/lib/facets/more/settings.rb +219 -0
- data/lib/facets/more/snapshot.rb +4 -2
- data/lib/facets/more/tagiterator.rb +4 -4
- data/lib/facets/more/taskable.rb +5 -5
- data/lib/facets/more/tkxml.rb +171 -0
- data/meta/projectinfo +38 -0
- data/{Reapfile → meta/reapfile} +0 -0
- data/meta/task +74 -0
- data/meta/tasks/calibre.rb +16 -0
- data/meta/version +1 -0
- data/test/lib/facets/core/array/test_at_rand.rb +1 -1
- data/test/lib/facets/core/array/test_delete_unless.rb +1 -1
- data/test/lib/facets/core/array/test_delete_values.rb +1 -1
- data/test/lib/facets/core/array/test_delete_values_at.rb +1 -1
- data/test/lib/facets/core/array/test_first.rb +1 -1
- data/test/lib/facets/core/array/test_head.rb +1 -1
- data/test/lib/facets/core/array/test_last_index.rb +1 -1
- data/test/lib/facets/core/array/test_merge.rb +1 -1
- data/test/lib/facets/core/array/test_mid.rb +1 -1
- data/test/lib/facets/core/array/test_middle.rb +1 -1
- data/test/lib/facets/core/array/test_op_fetch.rb +1 -1
- data/test/lib/facets/core/array/test_op_store.rb +1 -1
- data/test/lib/facets/core/array/test_pick.rb +1 -1
- data/test/lib/facets/core/array/test_pos.rb +1 -1
- data/test/lib/facets/core/array/test_pot.rb +1 -1
- data/test/lib/facets/core/array/test_pull.rb +1 -1
- data/test/lib/facets/core/array/test_rand_index.rb +1 -1
- data/test/lib/facets/core/array/test_rand_subset.rb +1 -1
- data/test/lib/facets/core/array/test_range.rb +1 -1
- data/test/lib/facets/core/array/test_rotate.rb +1 -1
- data/test/lib/facets/core/array/test_select.rb +1 -1
- data/test/lib/facets/core/array/test_shuffle.rb +1 -1
- data/test/lib/facets/core/array/test_thru.rb +1 -1
- data/test/lib/facets/core/array/test_to_b.rb +1 -1
- data/test/lib/facets/core/array/test_to_h.rb +1 -1
- data/test/lib/facets/core/array/test_to_hash.rb +1 -1
- data/test/lib/facets/core/binding/self/test_of_caller.rb +1 -1
- data/test/lib/facets/core/binding/test___LINE__.rb +1 -1
- data/test/lib/facets/core/binding/test_call_stack.rb +1 -1
- data/test/lib/facets/core/binding/test_called.rb +1 -1
- data/test/lib/facets/core/binding/test_caller.rb +1 -1
- data/test/lib/facets/core/binding/test_defined.rb +1 -1
- data/test/lib/facets/core/binding/test_eval.rb +1 -1
- data/test/lib/facets/core/binding/test_local_variables.rb +1 -1
- data/test/lib/facets/core/binding/test_method_name.rb +1 -1
- data/test/lib/facets/core/binding/test_op_fetch.rb +1 -1
- data/test/lib/facets/core/binding/test_op_store.rb +1 -1
- data/test/lib/facets/core/binding/test_self.rb +1 -1
- data/test/lib/facets/core/class/test_cattr.rb +1 -1
- data/test/lib/facets/core/class/test_descendents.rb +1 -1
- data/test/lib/facets/core/class/test_method_name.rb +1 -1
- data/test/lib/facets/core/class/test_remove_descendents.rb +1 -1
- data/test/lib/facets/core/class/test_unix_path.rb +1 -1
- data/test/lib/facets/core/comparable/test_at_least.rb +1 -1
- data/test/lib/facets/core/comparable/test_clip.rb +1 -1
- data/test/lib/facets/core/comparable/test_cmp.rb +1 -1
- data/test/lib/facets/core/continuation/self/test_create.rb +1 -1
- data/test/lib/facets/core/date/test_days_in_month.rb +1 -1
- data/test/lib/facets/core/date/test_days_of_month.rb +1 -1
- data/test/lib/facets/core/date/test_stamp.rb +1 -1
- data/test/lib/facets/core/date/test_to_date.rb +1 -1
- data/test/lib/facets/core/date/test_to_s.rb +1 -1
- data/test/lib/facets/core/date/test_to_time.rb +1 -1
- data/test/lib/facets/core/dir/self/test_ancestor.rb +1 -1
- data/test/lib/facets/core/dir/self/test_ascend.rb +1 -1
- data/test/lib/facets/core/enumerable/self/test_combinations.rb +1 -1
- data/test/lib/facets/core/enumerable/self/test_cross.rb +1 -1
- data/test/lib/facets/core/enumerable/test_collect_with_index.rb +1 -1
- data/test/lib/facets/core/enumerable/test_commonality.rb +1 -1
- data/test/lib/facets/core/enumerable/test_compact_collect.rb +1 -1
- data/test/lib/facets/core/enumerable/test_count.rb +1 -1
- data/test/lib/facets/core/enumerable/test_cross.rb +1 -1
- data/test/lib/facets/core/enumerable/test_each_combination.rb +1 -1
- data/test/lib/facets/core/enumerable/test_each_pair.rb +1 -1
- data/test/lib/facets/core/enumerable/test_each_slice.rb +1 -1
- data/test/lib/facets/core/enumerable/test_each_unique_pair.rb +1 -1
- data/test/lib/facets/core/enumerable/test_entropy.rb +1 -1
- data/test/lib/facets/core/enumerable/test_every.rb +1 -1
- data/test/lib/facets/core/enumerable/test_ew.rb +1 -1
- data/test/lib/facets/core/enumerable/test_filter_collect.rb +1 -1
- data/test/lib/facets/core/enumerable/test_find_collisions.rb +1 -1
- data/test/lib/facets/core/enumerable/test_frequency.rb +1 -1
- data/test/lib/facets/core/enumerable/test_graph.rb +1 -1
- data/test/lib/facets/core/enumerable/test_ideal_entropy.rb +1 -1
- data/test/lib/facets/core/enumerable/test_none.rb +1 -1
- data/test/lib/facets/core/enumerable/test_occur.rb +1 -1
- data/test/lib/facets/core/enumerable/test_one.rb +1 -1
- data/test/lib/facets/core/enumerable/test_op_pow.rb +1 -1
- data/test/lib/facets/core/enumerable/test_partition_by.rb +1 -1
- data/test/lib/facets/core/enumerable/test_permute.rb +1 -1
- data/test/lib/facets/core/enumerable/test_probability.rb +1 -1
- data/test/lib/facets/core/enumerable/test_to_h.rb +1 -1
- data/test/lib/facets/core/enumerable/test_uniq_by.rb +1 -1
- data/test/lib/facets/core/file/self/test_create.rb +1 -1
- data/test/lib/facets/core/file/self/test_open_as_string.rb +1 -1
- data/test/lib/facets/core/file/self/test_read_list.rb +1 -1
- data/test/lib/facets/core/file/self/test_sanitize.rb +1 -1
- data/test/lib/facets/core/file/self/test_split_all.rb +1 -1
- data/test/lib/facets/core/float/test_round_at.rb +1 -1
- data/test/lib/facets/core/float/test_round_to.rb +1 -1
- data/test/lib/facets/core/hash/self/test_zipnew.rb +1 -1
- data/test/lib/facets/core/hash/test_alias.rb +1 -1
- data/test/lib/facets/core/hash/test_assert_has_keys.rb +1 -1
- data/test/lib/facets/core/hash/test_assert_has_only_keys.rb +1 -1
- data/test/lib/facets/core/hash/test_at.rb +1 -1
- data/test/lib/facets/core/hash/test_collate.rb +1 -1
- data/test/lib/facets/core/hash/test_each.rb +1 -1
- data/test/lib/facets/core/hash/test_each_with_index.rb +1 -1
- data/test/lib/facets/core/hash/test_each_with_key.rb +1 -1
- data/test/lib/facets/core/hash/test_graph.rb +1 -1
- data/test/lib/facets/core/hash/test_has_keys.rb +1 -1
- data/test/lib/facets/core/hash/test_has_only_keys.rb +1 -1
- data/test/lib/facets/core/hash/test_inverse.rb +1 -1
- data/test/lib/facets/core/hash/test_normalize_keys.rb +34 -0
- data/test/lib/facets/core/hash/test_op_fetch.rb +1 -1
- data/test/lib/facets/core/hash/test_op_lshift.rb +1 -1
- data/test/lib/facets/core/hash/test_rand_key.rb +1 -1
- data/test/lib/facets/core/hash/test_rand_pair.rb +1 -1
- data/test/lib/facets/core/hash/test_rand_value.rb +1 -1
- data/test/lib/facets/core/hash/test_replace_each.rb +1 -1
- data/test/lib/facets/core/hash/test_shuffle.rb +1 -1
- data/test/lib/facets/core/hash/test_slice.rb +1 -1
- data/test/lib/facets/core/hash/{test_keys_to_s.rb → test_stringify_keys.rb} +5 -5
- data/test/lib/facets/core/hash/test_swap.rb +1 -1
- data/test/lib/facets/core/hash/test_swapkey.rb +1 -1
- data/test/lib/facets/core/hash/{test_keys_to_sym.rb → test_symbolize_keys.rb} +5 -5
- data/test/lib/facets/core/hash/test_to_h.rb +1 -1
- data/test/lib/facets/core/hash/test_to_ostruct.rb +1 -1
- data/test/lib/facets/core/hash/test_to_ostruct_recurse.rb +1 -1
- data/test/lib/facets/core/hash/test_traverse.rb +1 -1
- data/test/lib/facets/core/hash/test_update_each.rb +1 -1
- data/test/lib/facets/core/hash/test_update_keys.rb +1 -1
- data/test/lib/facets/core/hash/test_update_values.rb +1 -1
- data/test/lib/facets/core/hash/test_weave.rb +1 -1
- data/test/lib/facets/core/integer/test_factorial.rb +1 -1
- data/test/lib/facets/core/integer/test_multiple.rb +1 -1
- data/test/lib/facets/core/integer/test_of.rb +28 -0
- data/test/lib/facets/core/integer/test_ordinal.rb +1 -1
- data/test/lib/facets/core/integer/test_times_collect.rb +1 -1
- data/test/lib/facets/core/kernel/test___class__.rb +1 -1
- data/test/lib/facets/core/kernel/test___method__.rb +1 -1
- data/test/lib/facets/core/kernel/test_as.rb +1 -1
- data/test/lib/facets/core/kernel/test_assign_from.rb +1 -1
- data/test/lib/facets/core/kernel/test_assign_with.rb +1 -1
- data/test/lib/facets/core/kernel/test_bool.rb +1 -1
- data/test/lib/facets/core/kernel/test_bug.rb +1 -1
- data/test/lib/facets/core/kernel/test_call_stack.rb +1 -1
- data/test/lib/facets/core/kernel/test_called.rb +1 -1
- data/test/lib/facets/core/kernel/test_callee.rb +26 -0
- data/test/lib/facets/core/kernel/test_constant.rb +1 -1
- data/test/lib/facets/core/kernel/test_copy.rb +1 -1
- data/test/lib/facets/core/kernel/test_deep_copy.rb +1 -1
- data/test/lib/facets/core/kernel/test_demo.rb +1 -1
- data/test/lib/facets/core/kernel/test_fn.rb +1 -1
- data/test/lib/facets/core/kernel/test_get_by_id.rb +1 -1
- data/test/lib/facets/core/kernel/test_here.rb +1 -1
- data/test/lib/facets/core/kernel/test_in.rb +1 -1
- data/test/lib/facets/core/kernel/test_instance_exec.rb +52 -0
- data/test/lib/facets/core/kernel/test_maybe.rb +1 -1
- data/test/lib/facets/core/kernel/test_metaclass.rb +1 -1
- data/test/lib/facets/core/kernel/test_method.rb +1 -1
- data/test/lib/facets/core/kernel/test_methods.rb +1 -1
- data/test/lib/facets/core/kernel/test_new.rb +1 -1
- data/test/lib/facets/core/kernel/test_object_class.rb +1 -1
- data/test/lib/facets/core/kernel/test_object_hexid.rb +1 -1
- data/test/lib/facets/core/kernel/test_quaclass.rb +1 -1
- data/test/lib/facets/core/kernel/test_require_all.rb +1 -1
- data/test/lib/facets/core/kernel/test_require_esc.rb +1 -1
- data/test/lib/facets/core/kernel/test_require_facet.rb +1 -1
- data/test/lib/facets/core/kernel/test_resc.rb +1 -1
- data/test/lib/facets/core/kernel/test_returning.rb +1 -1
- data/test/lib/facets/core/kernel/test_send_as.rb +1 -1
- data/test/lib/facets/core/kernel/test_set_from.rb +1 -1
- data/test/lib/facets/core/kernel/test_set_with.rb +1 -1
- data/test/lib/facets/core/kernel/test_silently.rb +1 -1
- data/test/lib/facets/core/kernel/test_singleton.rb +1 -1
- data/test/lib/facets/core/kernel/test_singleton_class.rb +1 -1
- data/test/lib/facets/core/kernel/test_superior.rb +1 -1
- data/test/lib/facets/core/kernel/test_supermethod.rb +1 -1
- data/test/lib/facets/core/kernel/test_this.rb +1 -1
- data/test/lib/facets/core/kernel/test_to_b.rb +1 -1
- data/test/lib/facets/core/kernel/test_to_bool.rb +1 -1
- data/test/lib/facets/core/kernel/test_to_data.rb +59 -0
- data/test/lib/facets/core/kernel/test_uri.rb +1 -1
- data/test/lib/facets/core/kernel/test_val.rb +1 -1
- data/test/lib/facets/core/kernel/test_with_accessor.rb +1 -1
- data/test/lib/facets/core/matchdata/test_match.rb +1 -1
- data/test/lib/facets/core/matchdata/test_matchtree.rb +1 -1
- data/test/lib/facets/core/module/test_abstract.rb +1 -1
- data/test/lib/facets/core/module/test_alias_module_function.rb +1 -1
- data/test/lib/facets/core/module/test_ancestor.rb +1 -1
- data/test/lib/facets/core/module/test_basename.rb +1 -1
- data/test/lib/facets/core/module/test_by_name.rb +1 -1
- data/test/lib/facets/core/module/test_class_extension.rb +1 -1
- data/test/lib/facets/core/module/test_clone_using.rb +1 -1
- data/test/lib/facets/core/module/test_dirname.rb +1 -1
- data/test/lib/facets/core/module/test_equate_on.rb +1 -1
- data/test/lib/facets/core/module/test_include_as.rb +1 -1
- data/test/lib/facets/core/module/test_initializer.rb +1 -1
- data/test/lib/facets/core/module/test_instance_methods.rb +1 -1
- data/test/lib/facets/core/module/test_integrate.rb +1 -1
- data/test/lib/facets/core/module/test_memoize.rb +1 -1
- data/test/lib/facets/core/module/test_modspace.rb +1 -1
- data/test/lib/facets/core/module/test_namespace.rb +1 -1
- data/test/lib/facets/core/module/test_nesting.rb +1 -1
- data/test/lib/facets/core/module/test_nodef.rb +1 -1
- data/test/lib/facets/core/module/test_on_included.rb +1 -1
- data/test/lib/facets/core/module/test_redef.rb +1 -1
- data/test/lib/facets/core/module/test_redefine_method.rb +1 -1
- data/test/lib/facets/core/module/test_redirect.rb +1 -1
- data/test/lib/facets/core/module/test_redirect_method.rb +1 -1
- data/test/lib/facets/core/module/test_remove.rb +1 -1
- data/test/lib/facets/core/module/test_rename.rb +1 -1
- data/test/lib/facets/core/module/test_rename_method.rb +1 -1
- data/test/lib/facets/core/module/test_revisal.rb +1 -1
- data/test/lib/facets/core/module/test_shadow_method.rb +1 -1
- data/test/lib/facets/core/module/test_sort_on.rb +1 -1
- data/test/lib/facets/core/module/test_this.rb +1 -1
- data/test/lib/facets/core/module/test_wrap.rb +1 -1
- data/test/lib/facets/core/module/test_wrap_method.rb +1 -1
- data/test/lib/facets/core/nilclass/test_blank.rb +1 -1
- data/test/lib/facets/core/nilclass/test_empty.rb +1 -1
- data/test/lib/facets/core/nilclass/test_include.rb +1 -1
- data/test/lib/facets/core/nilclass/test_op_fetch.rb +1 -1
- data/test/lib/facets/core/nilclass/test_size.rb +1 -1
- data/test/lib/facets/core/nilclass/test_to_h.rb +1 -1
- data/test/lib/facets/core/numeric/test_approx.rb +1 -1
- data/test/lib/facets/core/numeric/test_ceil_multiple.rb +1 -1
- data/test/lib/facets/core/numeric/test_distance.rb +28 -0
- data/test/lib/facets/core/numeric/test_succ.rb +1 -1
- data/test/lib/facets/core/numeric/test_to_b.rb +1 -1
- data/test/lib/facets/core/ostruct/test___merge__.rb +1 -1
- data/test/lib/facets/core/ostruct/test___update__.rb +1 -1
- data/test/lib/facets/core/ostruct/test_op_fetch.rb +1 -1
- data/test/lib/facets/core/ostruct/test_op_store.rb +1 -1
- data/test/lib/facets/core/proc/test_compose.rb +1 -8
- data/test/lib/facets/core/proc/test_op_mul.rb +34 -0
- data/test/lib/facets/core/proc/test_to_method.rb +15 -2
- data/test/lib/facets/core/range/test_to_r.rb +1 -1
- data/test/lib/facets/core/range/test_to_range.rb +1 -1
- data/test/lib/facets/core/range/test_umbrella.rb +1 -1
- data/test/lib/facets/core/range/test_within.rb +1 -1
- data/test/lib/facets/core/regexp/test_arity.rb +1 -1
- data/test/lib/facets/core/regexp/test_to_re.rb +1 -1
- data/test/lib/facets/core/regexp/test_to_regexp.rb +1 -1
- data/test/lib/facets/core/string/self/test_interpolate.rb +1 -1
- data/test/lib/facets/core/string/self/test_patterns.rb +1 -1
- data/test/lib/facets/core/string/self/test_rand_letter.rb +1 -1
- data/test/lib/facets/core/string/test_align_center.rb +1 -1
- data/test/lib/facets/core/string/test_at_rand.rb +1 -1
- data/test/lib/facets/core/string/test_basename.rb +1 -1
- data/test/lib/facets/core/string/test_blank.rb +1 -1
- data/test/lib/facets/core/string/test_bracket.rb +1 -1
- data/test/lib/facets/core/string/test_camelcase.rb +1 -1
- data/test/lib/facets/core/string/test_camelize.rb +1 -1
- data/test/lib/facets/core/string/test_capitalized.rb +1 -1
- data/test/lib/facets/core/string/test_chars.rb +1 -1
- data/test/lib/facets/core/string/test_cmp.rb +1 -1
- data/test/lib/facets/core/string/test_demodulize.rb +1 -1
- data/test/lib/facets/core/string/test_divide.rb +29 -0
- data/test/lib/facets/core/string/test_downcase.rb +1 -1
- data/test/lib/facets/core/string/test_dresner.rb +1 -1
- data/test/lib/facets/core/string/test_each_char.rb +1 -1
- data/test/lib/facets/core/string/test_each_word.rb +1 -1
- data/test/lib/facets/core/string/test_first.rb +1 -1
- data/test/lib/facets/core/string/test_fold.rb +1 -1
- data/test/lib/facets/core/string/test_humanize.rb +1 -1
- data/test/lib/facets/core/string/test_indent.rb +1 -1
- data/test/lib/facets/core/string/test_index_all.rb +1 -1
- data/test/lib/facets/core/string/test_last.rb +1 -1
- data/test/lib/facets/core/string/test_line_wrap.rb +1 -1
- data/test/lib/facets/core/string/test_lines.rb +1 -1
- data/test/lib/facets/core/string/test_lowercase.rb +1 -1
- data/test/lib/facets/core/string/test_margin.rb +1 -1
- data/test/lib/facets/core/string/test_methodize.rb +1 -1
- data/test/lib/facets/core/string/test_modulize.rb +1 -1
- data/test/lib/facets/core/string/test_mscan.rb +1 -1
- data/test/lib/facets/core/string/test_natcmp.rb +1 -1
- data/test/lib/facets/core/string/test_nchar.rb +1 -1
- data/test/lib/facets/core/string/test_pathize.rb +1 -1
- data/test/lib/facets/core/string/test_pop.rb +1 -1
- data/test/lib/facets/core/string/test_pot.rb +1 -1
- data/test/lib/facets/core/string/test_push.rb +1 -1
- data/test/lib/facets/core/string/test_quote.rb +1 -1
- data/test/lib/facets/core/string/test_rand_byte.rb +1 -1
- data/test/lib/facets/core/string/test_rand_index.rb +1 -1
- data/test/lib/facets/core/string/test_range.rb +1 -1
- data/test/lib/facets/core/string/test_range_all.rb +1 -1
- data/test/lib/facets/core/string/test_range_of_line.rb +1 -1
- data/test/lib/facets/core/string/test_regesc.rb +1 -1
- data/test/lib/facets/core/string/test_shatter.rb +1 -1
- data/test/lib/facets/core/string/test_shift.rb +1 -1
- data/test/lib/facets/core/string/test_shuffle.rb +1 -1
- data/test/lib/facets/core/string/test_similarity.rb +1 -1
- data/test/lib/facets/core/string/test_singular.rb +62 -8
- data/test/lib/facets/core/string/test_soundex.rb +1 -1
- data/test/lib/facets/core/string/test_succ.rb +1 -1
- data/test/lib/facets/core/string/test_to_a.rb +1 -1
- data/test/lib/facets/core/string/test_to_b.rb +1 -1
- data/test/lib/facets/core/string/test_to_const.rb +1 -1
- data/test/lib/facets/core/string/test_to_date.rb +1 -1
- data/test/lib/facets/core/string/test_to_proc.rb +1 -1
- data/test/lib/facets/core/string/test_to_re.rb +1 -1
- data/test/lib/facets/core/string/test_to_time.rb +1 -1
- data/test/lib/facets/core/string/test_unix_crypt.rb +1 -1
- data/test/lib/facets/core/string/test_unpack.rb +1 -1
- data/test/lib/facets/core/string/test_unshift.rb +1 -1
- data/test/lib/facets/core/string/test_upcase.rb +1 -1
- data/test/lib/facets/core/string/test_whitespace.rb +1 -1
- data/test/lib/facets/core/string/test_word_filter.rb +1 -1
- data/test/lib/facets/core/string/test_word_wrap.rb +1 -1
- data/test/lib/facets/core/string/test_words.rb +1 -1
- data/test/lib/facets/core/symbol/test_camelcase.rb +1 -1
- data/test/lib/facets/core/symbol/test_camelize.rb +1 -1
- data/test/lib/facets/core/symbol/test_capitalize.rb +1 -1
- data/test/lib/facets/core/symbol/test_capitalized.rb +1 -1
- data/test/lib/facets/core/symbol/test_downcase.rb +1 -1
- data/test/lib/facets/core/symbol/test_not.rb +1 -1
- data/test/lib/facets/core/symbol/test_pad.rb +1 -1
- data/test/lib/facets/core/symbol/test_succ.rb +1 -1
- data/test/lib/facets/core/symbol/test_to_const.rb +1 -1
- data/test/lib/facets/core/symbol/test_to_proc.rb +1 -1
- data/test/lib/facets/core/symbol/test_to_str.rb +1 -1
- data/test/lib/facets/core/symbol/test_underscore.rb +1 -1
- data/test/lib/facets/core/symbol/test_upcase.rb +1 -1
- data/test/lib/facets/core/time/test_change.rb +1 -1
- data/test/lib/facets/core/time/test_elapse.rb +1 -1
- data/test/lib/facets/core/time/test_stamp.rb +1 -1
- data/test/lib/facets/core/time/test_to_date.rb +1 -1
- data/test/lib/facets/core/time/test_to_s.rb +1 -1
- data/test/lib/facets/core/time/test_to_time.rb +1 -1
- data/test/lib/facets/more/test_annattr.rb +1 -1
- data/test/lib/facets/more/test_annotation.rb +225 -113
- data/test/lib/facets/more/test_ansicode.rb +1 -1
- data/test/lib/facets/more/test_association.rb +1 -1
- data/test/lib/facets/more/test_autoarray.rb +32 -0
- data/test/lib/facets/more/test_basicobject.rb +1 -1
- data/test/lib/facets/more/test_bbcode.rb +1 -1
- data/test/lib/facets/more/test_binaryreader.rb +1 -1
- data/test/lib/facets/more/test_bitmask.rb +1 -1
- data/test/lib/facets/more/test_bytes.rb +1 -1
- data/test/lib/facets/more/test_classmethods.rb +1 -1
- data/test/lib/facets/more/test_command.rb +1 -1
- data/test/lib/facets/more/test_coroutine.rb +1 -1
- data/test/lib/facets/more/test_crypt.rb +1 -1
- data/test/lib/facets/more/test_cut.rb +198 -0
- data/test/lib/facets/more/test_dictionary.rb +1 -1
- data/test/lib/facets/more/test_elementor.rb +5 -1
- data/test/lib/facets/more/test_enumerablepass.rb +1 -1
- data/test/lib/facets/more/test_floatstring.rb +1 -1
- data/test/lib/facets/more/test_functor.rb +1 -1
- data/test/lib/facets/more/test_htmlbuilder.rb +1 -1
- data/test/lib/facets/more/test_infinity.rb +50 -0
- data/test/lib/facets/more/test_inheritor.rb +1 -1
- data/test/lib/facets/more/test_instance_intercept.rb +50 -0
- data/test/lib/facets/more/test_interval.rb +1 -1
- data/test/lib/facets/more/test_json.rb +1 -1
- data/test/lib/facets/more/test_lisp.rb +1 -1
- data/test/lib/facets/more/test_lisp_format.rb +1 -1
- data/test/lib/facets/more/test_lrucache.rb +1 -1
- data/test/lib/facets/more/test_mathconstants.rb +1 -1
- data/test/lib/facets/more/test_methodfilter.rb +45 -0
- data/test/lib/facets/more/test_methodprobe.rb +1 -1
- data/test/lib/facets/more/test_multipliers.rb +1 -1
- data/test/lib/facets/more/test_multiton.rb +1 -1
- data/test/lib/facets/more/test_nackclass.rb +1 -1
- data/test/lib/facets/more/test_nilcomparable.rb +1 -1
- data/test/lib/facets/more/test_opencascade.rb +24 -15
- data/test/lib/facets/more/test_openobject.rb +70 -22
- data/test/lib/facets/more/test_overload.rb +1 -1
- data/test/lib/facets/more/test_paramix.rb +1 -1
- data/test/lib/facets/more/test_pqueue.rb +1 -1
- data/test/lib/facets/more/test_predicate.rb +79 -0
- data/test/lib/facets/more/test_preinitialize.rb +1 -1
- data/test/lib/facets/more/test_promoteself.rb +1 -1
- data/test/lib/facets/more/test_recorder.rb +1 -1
- data/test/lib/facets/more/test_snapshot.rb +1 -1
- data/test/lib/facets/more/test_statichash.rb +1 -1
- data/test/lib/facets/more/test_syncarray.rb +1 -1
- data/test/lib/facets/more/test_synchash.rb +1 -1
- data/test/lib/facets/more/test_tagiterator.rb +1 -1
- data/test/lib/facets/more/test_taskable.rb +1 -1
- data/test/lib/facets/more/test_timer.rb +1 -1
- data/test/lib/facets/more/test_times.rb +1 -1
- data/test/lib/facets/more/test_tuple.rb +1 -1
- data/test/lib/facets/more/test_typecast.rb +1 -1
- data/test/lib/facets/more/test_uninheritable.rb +1 -1
- data/test/lib/facets/more/test_units.rb +1 -1
- data/test/lib/facets/more/test_xmlbuilder.rb +1 -1
- data/test/lib/facets/more/test_xmlhelper.rb +1 -1
- data/test/lib/facets/more/test_xoxo.rb +1 -1
- data/test/lib/facets/more/test_yamlstruct.rb +1 -1
- metadata +1147 -2081
- data/doc/api/core/classes/Array.html +0 -1356
- data/doc/api/core/classes/Binding.html +0 -538
- data/doc/api/core/classes/Class.html +0 -476
- data/doc/api/core/classes/Comparable.html +0 -231
- data/doc/api/core/classes/Config.html +0 -120
- data/doc/api/core/classes/Continuation.html +0 -168
- data/doc/api/core/classes/Date.html +0 -219
- data/doc/api/core/classes/Dir.html +0 -208
- data/doc/api/core/classes/Enumerable.html +0 -1462
- data/doc/api/core/classes/FalseClass.html +0 -115
- data/doc/api/core/classes/File.html +0 -383
- data/doc/api/core/classes/FileUtils.html +0 -468
- data/doc/api/core/classes/Float.html +0 -157
- data/doc/api/core/classes/Gem.html +0 -150
- data/doc/api/core/classes/Hash.html +0 -1627
- data/doc/api/core/classes/Integer.html +0 -353
- data/doc/api/core/classes/Kernal.html +0 -86
- data/doc/api/core/classes/Kernel.html +0 -2010
- data/doc/api/core/classes/Logger.html +0 -157
- data/doc/api/core/classes/MatchData.html +0 -195
- data/doc/api/core/classes/Module.html +0 -1812
- data/doc/api/core/classes/NackClass.html +0 -92
- data/doc/api/core/classes/NilClass.html +0 -385
- data/doc/api/core/classes/Numeric.html +0 -306
- data/doc/api/core/classes/Object.html +0 -332
- data/doc/api/core/classes/OpenStruct.html +0 -315
- data/doc/api/core/classes/Pathname.html +0 -154
- data/doc/api/core/classes/Proc.html +0 -154
- data/doc/api/core/classes/Range.html +0 -235
- data/doc/api/core/classes/Regexp.html +0 -185
- data/doc/api/core/classes/ScriptBug.html +0 -92
- data/doc/api/core/classes/String.html +0 -3250
- data/doc/api/core/classes/Symbol.html +0 -463
- data/doc/api/core/classes/Time.html +0 -307
- data/doc/api/core/classes/TrueClass.html +0 -115
- data/doc/api/core/classes/UnboundMethod.html +0 -121
- data/doc/api/core/created.rid +0 -1
- data/doc/api/core/files/COPYING.html +0 -517
- data/doc/api/core/files/README.html +0 -386
- data/doc/api/core/files/lib/facets/core/all_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/array/at_rand_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/body_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/array/delete_unless_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/delete_values_at_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/delete_values_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/each_with_key_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/first_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/array/foot_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/array/head_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/join_sentence_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/last_index_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/last_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/array/merge_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/mid_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/middle_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/op_fetch_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/op_mod_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/op_store_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/array/pick_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/pos_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/pot_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/pull_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/rand_index_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/rand_subset_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/range_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/rotate_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/select_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/shuffle_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/store_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/tail_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/array/thru_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/to_b_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/to_h_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/to_hash_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/array/unzip_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/binding/__DIR___rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/binding/__FILE___rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/binding/__LINE___rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/binding/call_stack_rb.html +0 -97
- data/doc/api/core/files/lib/facets/core/binding/called_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/binding/caller_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/binding/defined_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/binding/eval_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/binding/local_variables_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/binding/method_name_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/binding/op_fetch_rb.html +0 -97
- data/doc/api/core/files/lib/facets/core/binding/op_store_rb.html +0 -97
- data/doc/api/core/files/lib/facets/core/binding/self/of_caller_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/binding/self_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/binding_rb.html +0 -109
- data/doc/api/core/files/lib/facets/core/class/by_name_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/class/cattr_accessor_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/class/cattr_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/class/cattr_reader_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/class/cattr_writer_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/class/descendents_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/class/method_name_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/class/remove_descendents_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/class/remove_subclasses_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/class/subclasses_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/class/to_proc_rb.html +0 -98
- data/doc/api/core/files/lib/facets/core/class/unix_path_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/comparable/at_least_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/comparable/at_most_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/comparable/cap_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/comparable/clip_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/comparable/cmp_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/config/datadir_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/continuation/self/create_rb.html +0 -148
- data/doc/api/core/files/lib/facets/core/date/days_in_month_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/date/days_of_month_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/date/stamp_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/date/to_date_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/date/to_s_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/date/to_time_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/dir/self/ancestor_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/dir/self/ascend_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/dir/self/descend_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/dir/self/ls_r_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/dir/self/recurse_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/enumerable/accumulate_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/enumerable/cascade_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/collect_if_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/collect_with_counter_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/enumerable/collect_with_index_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/commonality_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/compact_collect_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/enumerable/compact_map_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/enumerable/count_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/cross_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/enumerable/each_by_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/enumerable/each_combination_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/each_pair_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/each_permutation_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/enumerable/each_slice_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/each_unique_pair_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/enumerable/each_with_counter_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/elementwise_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/enumerable/entropy_rb.html +0 -97
- data/doc/api/core/files/lib/facets/core/enumerable/every_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/enumerable/ew_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/enumerable/filter_collect_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/filter_map_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/enumerable/find_collisions_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/enumerable/frequency_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/graph_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/enumerable/ideal_entropy_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/map_if_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/enumerable/map_with_counter_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/enumerable/map_with_index_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/enumerable/mode_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/none_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/nonuniq_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/occur_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/one_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/op_pow_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/enumerable/partition_by_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/permute_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/enumerable/probability_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/project_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/self/combinations_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/self/cross_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/enumerable/to_h_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/uniq_by_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/enumerable/where_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/file/self/append_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/file/self/create_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/file/self/open_as_string_rb.html +0 -118
- data/doc/api/core/files/lib/facets/core/file/self/read_binary_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/file/self/read_list_rb.html +0 -97
- data/doc/api/core/files/lib/facets/core/file/self/rootname_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/file/self/sanitize_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/file/self/split_all_rb.html +0 -101
- data/doc/api/core/files/lib/facets/core/file/self/write_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/fileutils/head_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/fileutils/safe_ln_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/fileutils/slice_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/fileutils/split_all_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/fileutils/tail_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/fileutils/wc_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/fileutils/whereis_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/fileutils/which_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/float/approx_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/float/round_at_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/float/round_off_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/float/round_to_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/gem/self/active_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/gem/self/gempath_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/gem/self/gemspec_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/hash/alias_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/assert_has_keys_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/hash/assert_has_only_keys_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/hash/at_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/collate_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/delete_unless_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/hash/each_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/each_with_index_rb.html +0 -97
- data/doc/api/core/files/lib/facets/core/hash/each_with_key_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/graph_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/hash/has_keys_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/has_only_keys_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/inverse_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/join_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/keys_to_s_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/keys_to_sym_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/op_fetch_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/hash/op_lshift_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/op_store_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/hash/rand_key_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/rand_pair_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/hash/rand_value_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/hash/replace_each_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/self/zipnew_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/shuffle_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/hash/slice_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/stringify_keys_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/hash/swap_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/swapkey_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/symoblize_keys_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/hash/to_h_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/to_ostruct_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/hash/to_ostruct_recurse_rb.html +0 -97
- data/doc/api/core/files/lib/facets/core/hash/to_proc_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/traverse_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/update_each_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/update_keys_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/update_values_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/variablize_keys_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/hash/weave_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/inflect_rb.html +0 -117
- data/doc/api/core/files/lib/facets/core/integer/even_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/integer/fac_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/integer/fact_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/integer/factorial_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/integer/multiple_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/integer/odd_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/integer/ordinal_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/integer/times_collect_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/integer/times_map_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/kernel/__DIR___rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/__callee___rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/kernel/__class___rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/__get___rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/__method___rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/__self___rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/kernel/__set___rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/kernel/as_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/kernel/assign_from_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/kernel/assign_with_rb.html +0 -97
- data/doc/api/core/files/lib/facets/core/kernel/autoreload_files_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/kernel/autoreload_glob_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/kernel/autoreload_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/bool_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/bug_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/cache_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/call_stack_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/called_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/complete_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/constant_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/copy_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/deep_copy_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/demo_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/eigenclass_rb.html +0 -103
- data/doc/api/core/files/lib/facets/core/kernel/false_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/kernel/fn_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/generate_method_name_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/get_by_id_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/here_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/in_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/instance_assign_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/instvar_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/is_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/kernel/maybe_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/metaclass_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/method_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/methods_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/kernel/nack_rb.html +0 -98
- data/doc/api/core/files/lib/facets/core/kernel/new_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/object_class_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/object_hexid_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/op_esc_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/own_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/p_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/pp_exception_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/quaclass_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/require_all_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/require_esc_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/kernel/require_facet_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/kernel/require_local_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/resc_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/respond_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/returning_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/send_as_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/set_from_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/kernel/set_with_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/kernel/silence_warnings_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/kernel/silently_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/singleton_class_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/singleton_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/superior_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/supermethod_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/this_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/to_b_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/to_bool_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/true_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/kernel/unuri_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/kernel/uri_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/kernel/val_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/warn_with_line_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/with_accessor_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/kernel/with_reader_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/kernel/with_writer_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/logger/format_message_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/logger/format_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/matchdata/match_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/matchdata/matchset_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/matchdata/matchtree_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/abstract_rb.html +0 -105
- data/doc/api/core/files/lib/facets/core/module/alias_method_chain_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/alias_module_function_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/ancestor_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/attr_query_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/module/attr_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/attr_setter_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/attr_tester_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/module/attr_validator_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/basename_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/by_name_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/module/class_extension_rb.html +0 -124
- data/doc/api/core/files/lib/facets/core/module/class_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/clone_removing_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/module/clone_renaming_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/module/clone_using_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/dirname_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/equate_on_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/generate_instance_method_name_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/include_as_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/module/initializer_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/instance_methods_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/module/integrate_rb.html +0 -104
- data/doc/api/core/files/lib/facets/core/module/is_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/module/memoize_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/modspace_rb.html +0 -97
- data/doc/api/core/files/lib/facets/core/module/namespace_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/module/nesting_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/nodef_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/on_included_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/redef_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/module/redefine_method_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/redirect_method_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/redirect_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/module/remove_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/rename_method_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/rename_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/module/revisal_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/module/shadow_all_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/module/shadow_method_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/sort_on_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/this_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/module/wrap_method_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/module/wrap_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/nil_as_emptiness_rb.html +0 -116
- data/doc/api/core/files/lib/facets/core/nilclass/blank_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/nilclass/empty_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/nilclass/include_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/nilclass/length_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/nilclass/op_cmp_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/nilclass/op_fetch_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/nilclass/size_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/nilclass/status_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/nilclass/succ_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/nilclass/to_h_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/numeric/approx_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/numeric/ceil_multiple_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/numeric/pred_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/numeric/succ_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/numeric/to_b_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/ostruct/__merge___rb.html +0 -97
- data/doc/api/core/files/lib/facets/core/ostruct/__table___rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/ostruct/__update___rb.html +0 -98
- data/doc/api/core/files/lib/facets/core/ostruct/instance_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/ostruct/op_fetch_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/ostruct/op_store_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/ostruct/to_h_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/ostruct_rb.html +0 -102
- data/doc/api/core/files/lib/facets/core/pathname/ascend_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/pathname/descend_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/proc/compose_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/proc/op_mul_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/proc/to_method_rb.html +0 -133
- data/doc/api/core/files/lib/facets/core/random_rb.html +0 -111
- data/doc/api/core/files/lib/facets/core/range/to_r_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/range/to_range_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/range/umbrella_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/range/within_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/regexp/arity_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/regexp/to_re_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/regexp/to_regexp_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/align_center_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/align_left_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/string/align_right_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/string/at_rand_rb.html +0 -98
- data/doc/api/core/files/lib/facets/core/string/at_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/basename_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/blank_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/bracket_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/brief_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/bytes_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/camelcase_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/camelize_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/capitalized_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/chars_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/cmp_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/demodulize_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/string/dequote_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/downcase_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/dresner_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/each_char_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/each_word_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/ends_with_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/string/first_char_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/string/first_rb.html +0 -98
- data/doc/api/core/files/lib/facets/core/string/fold_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/format_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/string/humanize_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/indent_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/index_all_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/last_char_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/string/last_rb.html +0 -98
- data/doc/api/core/files/lib/facets/core/string/line_wrap_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/lines_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/lowercase_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/string/margin_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/methodize_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/modulize_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/mscan_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/natcmp_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/nchar_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/ordinal_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/string/pathize_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/plural_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/string/pop_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/pot_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/pull_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/push_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/quote_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/string/rand_byte_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/rand_index_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/range_all_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/string/range_of_line_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/range_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/regesc_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/self/format_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/self/interpolate_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/self/patterns_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/self/rand_letter_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/self/random_rb.html +0 -99
- data/doc/api/core/files/lib/facets/core/string/shatter_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/shell_escape_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/shift_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/shuffle_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/string/similarity_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/singular_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/soundex_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/starts_with_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/succ_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/tab_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/string/tabto_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/string/to_a_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/to_b_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/to_const_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/to_date_rb.html +0 -97
- data/doc/api/core/files/lib/facets/core/string/to_proc_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/to_re_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/to_rx_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/string/to_time_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/string/unbracket_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/string/underscore_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/unix_crypt_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/string/unpack_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/unshift_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/upcase_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/uppercase_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/string/whitespace_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/string/word_filter_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/word_wrap_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string/words_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/string_as_array_rb.html +0 -109
- data/doc/api/core/files/lib/facets/core/symbol/camelcase_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/symbol/camelize_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/symbol/capitalize_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/symbol/capitalized_rb.html +0 -97
- data/doc/api/core/files/lib/facets/core/symbol/downcase_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/symbol/not_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/symbol/pad_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/symbol/succ_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/symbol/to_const_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/symbol/to_proc_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/symbol/to_str_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/symbol/underscore_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/symbol/upcase_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/time/change_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/time/elapse_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/time/self/days_extrema_rb.html +0 -114
- data/doc/api/core/files/lib/facets/core/time/self/stamp_rb.html +0 -100
- data/doc/api/core/files/lib/facets/core/time/stamp_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/time/to_date_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/time/to_s_rb.html +0 -96
- data/doc/api/core/files/lib/facets/core/time/to_time_rb.html +0 -92
- data/doc/api/core/files/lib/facets/core/unboundmethod/name_rb.html +0 -92
- data/doc/api/core/fr_class_index.html +0 -81
- data/doc/api/core/fr_file_index.html +0 -521
- data/doc/api/core/fr_method_index.html +0 -559
- data/doc/api/core/index.html +0 -26
- data/doc/api/core/rdoc-style.css +0 -175
- data/doc/api/more/classes/Annotation.html +0 -258
- data/doc/api/more/classes/Array.html +0 -363
- data/doc/api/more/classes/Aspect.html +0 -159
- data/doc/api/more/classes/Aspects.html +0 -240
- data/doc/api/more/classes/Aspects/ClassMethods.html +0 -254
- data/doc/api/more/classes/Association.html +0 -289
- data/doc/api/more/classes/BBCode.html +0 -531
- data/doc/api/more/classes/BasicObject.html +0 -281
- data/doc/api/more/classes/BasicObject/Self.html +0 -143
- data/doc/api/more/classes/BinaryReader.html +0 -535
- data/doc/api/more/classes/BinaryReader/ByteOrder.html +0 -225
- data/doc/api/more/classes/BuilderObject.html +0 -248
- data/doc/api/more/classes/Class.html +0 -200
- data/doc/api/more/classes/Client.html +0 -1251
- data/doc/api/more/classes/Cloneable.html +0 -133
- data/doc/api/more/classes/Console.html +0 -105
- data/doc/api/more/classes/Console/ANSICode.html +0 -488
- data/doc/api/more/classes/Console/Command.html +0 -286
- data/doc/api/more/classes/Console/ProgressBar.html +0 -640
- data/doc/api/more/classes/Coroutine.html +0 -284
- data/doc/api/more/classes/Crypt.html +0 -270
- data/doc/api/more/classes/DebugSocket.html +0 -242
- data/doc/api/more/classes/Dictionary.html +0 -974
- data/doc/api/more/classes/Downloader.html +0 -515
- data/doc/api/more/classes/Downloader/Checksum.html +0 -96
- data/doc/api/more/classes/Downloader/Mirror.html +0 -134
- data/doc/api/more/classes/Elementor.html +0 -202
- data/doc/api/more/classes/Enumerable.html +0 -86
- data/doc/api/more/classes/EnumerablePass.html +0 -217
- data/doc/api/more/classes/Expirable.html +0 -197
- data/doc/api/more/classes/FalseClass.html +0 -119
- data/doc/api/more/classes/FileList.html +0 -971
- data/doc/api/more/classes/Float.html +0 -141
- data/doc/api/more/classes/FloatString.html +0 -413
- data/doc/api/more/classes/Functor.html +0 -224
- data/doc/api/more/classes/HTMLBuilder.html +0 -132
- data/doc/api/more/classes/HTMLHelper.html +0 -189
- data/doc/api/more/classes/HTTP.html +0 -154
- data/doc/api/more/classes/HTTP/BadResponseError.html +0 -94
- data/doc/api/more/classes/HTTP/Error.html +0 -96
- data/doc/api/more/classes/HTTP/Message.html +0 -633
- data/doc/api/more/classes/HTTP/Message/Body.html +0 -299
- data/doc/api/more/classes/HTTP/Message/Headers.html +0 -641
- data/doc/api/more/classes/HTTP/Status.html +0 -148
- data/doc/api/more/classes/HTTPAccess.html +0 -115
- data/doc/api/more/classes/Hash.html +0 -257
- data/doc/api/more/classes/HashBuilder.html +0 -216
- data/doc/api/more/classes/Heap.html +0 -535
- data/doc/api/more/classes/Heap/EmptyHeapException.html +0 -92
- data/doc/api/more/classes/Heap/Max.html +0 -133
- data/doc/api/more/classes/Heap/Min.html +0 -133
- data/doc/api/more/classes/IORedirect.html +0 -224
- data/doc/api/more/classes/Integer.html +0 -299
- data/doc/api/more/classes/Interval.html +0 -853
- data/doc/api/more/classes/InvalidNackError.html +0 -117
- data/doc/api/more/classes/JSON.html +0 -410
- data/doc/api/more/classes/JSON/Parser.html +0 -374
- data/doc/api/more/classes/JSON/State.html +0 -280
- data/doc/api/more/classes/Kernel.html +0 -400
- data/doc/api/more/classes/LRUCache.html +0 -461
- data/doc/api/more/classes/LRUCache/Item.html +0 -114
- data/doc/api/more/classes/LRUCache/Sentinel.html +0 -102
- data/doc/api/more/classes/Lazy.html +0 -96
- data/doc/api/more/classes/Lazy/Future.html +0 -100
- data/doc/api/more/classes/Lazy/Promise.html +0 -114
- data/doc/api/more/classes/Lazy/PromiseSafe.html +0 -99
- data/doc/api/more/classes/Lisp.html +0 -846
- data/doc/api/more/classes/Lisp/DottedPair.html +0 -289
- data/doc/api/more/classes/Lisp/Format.html +0 -147
- data/doc/api/more/classes/Math.html +0 -110
- data/doc/api/more/classes/Math/Constants.html +0 -691
- data/doc/api/more/classes/Math/Constants/CGS.html +0 -584
- data/doc/api/more/classes/Method.html +0 -170
- data/doc/api/more/classes/Method/Probe.html +0 -267
- data/doc/api/more/classes/Mock.html +0 -276
- data/doc/api/more/classes/Module.html +0 -599
- data/doc/api/more/classes/Multiton.html +0 -256
- data/doc/api/more/classes/NackClass.html +0 -245
- data/doc/api/more/classes/NilClass.html +0 -238
- data/doc/api/more/classes/NullClass.html +0 -202
- data/doc/api/more/classes/Numeric.html +0 -1104
- data/doc/api/more/classes/ORMSupport.html +0 -357
- data/doc/api/more/classes/Object.html +0 -328
- data/doc/api/more/classes/OpenCascade.html +0 -230
- data/doc/api/more/classes/OpenObject.html +0 -552
- data/doc/api/more/classes/PQueue.html +0 -471
- data/doc/api/more/classes/PathList.html +0 -162
- data/doc/api/more/classes/PathList/Finder.html +0 -137
- data/doc/api/more/classes/Pool.html +0 -207
- data/doc/api/more/classes/Proc.html +0 -140
- data/doc/api/more/classes/PromoteSelf.html +0 -138
- data/doc/api/more/classes/Quaternion.html +0 -1497
- data/doc/api/more/classes/REXMLBuilder.html +0 -357
- data/doc/api/more/classes/REXMLBuilder/REXMLUtil.html +0 -396
- data/doc/api/more/classes/Recorder.html +0 -208
- data/doc/api/more/classes/Reference.html +0 -201
- data/doc/api/more/classes/RubyOneLiners.html +0 -139
- data/doc/api/more/classes/RubyTals.html +0 -316
- data/doc/api/more/classes/SSLSocketWrap.html +0 -410
- data/doc/api/more/classes/Semaphore.html +0 -264
- data/doc/api/more/classes/SimpleStringIO.html +0 -139
- data/doc/api/more/classes/Snapshot.html +0 -191
- data/doc/api/more/classes/StateMachine.html +0 -248
- data/doc/api/more/classes/StateParser.html +0 -276
- data/doc/api/more/classes/StateParser/Constants.html +0 -109
- data/doc/api/more/classes/StateParser/Marker.html +0 -269
- data/doc/api/more/classes/StateParser/State.html +0 -448
- data/doc/api/more/classes/StaticHash.html +0 -144
- data/doc/api/more/classes/String.html +0 -300
- data/doc/api/more/classes/Struct.html +0 -134
- data/doc/api/more/classes/Symbol.html +0 -118
- data/doc/api/more/classes/SyncArray.html +0 -131
- data/doc/api/more/classes/SyncHash.html +0 -135
- data/doc/api/more/classes/SyncHash/Delegator.html +0 -213
- data/doc/api/more/classes/SyncHash/Inheritor.html +0 -213
- data/doc/api/more/classes/System.html +0 -1055
- data/doc/api/more/classes/TSort.html +0 -123
- data/doc/api/more/classes/TagIterator.html +0 -706
- data/doc/api/more/classes/Task.html +0 -237
- data/doc/api/more/classes/Task/Graph.html +0 -165
- data/doc/api/more/classes/Taskable.html +0 -300
- data/doc/api/more/classes/Time.html +0 -746
- data/doc/api/more/classes/Timer.html +0 -471
- data/doc/api/more/classes/Timer/Dummy.html +0 -141
- data/doc/api/more/classes/TracePoint.html +0 -456
- data/doc/api/more/classes/TrueClass.html +0 -118
- data/doc/api/more/classes/Tuple.html +0 -907
- data/doc/api/more/classes/TypeCastException.html +0 -163
- data/doc/api/more/classes/Uninheritable.html +0 -130
- data/doc/api/more/classes/Units.html +0 -191
- data/doc/api/more/classes/Units/Config.html +0 -120
- data/doc/api/more/classes/Units/Converter.html +0 -808
- data/doc/api/more/classes/Units/Converter/ExchangeRate.html +0 -155
- data/doc/api/more/classes/Units/Converter/ExchangeRate/CachedXMethods.html +0 -143
- data/doc/api/more/classes/Units/Converter/ExchangeRate/XMethods.html +0 -197
- data/doc/api/more/classes/Units/Unit.html +0 -434
- data/doc/api/more/classes/Units/Value.html +0 -331
- data/doc/api/more/classes/ValueHolder.html +0 -167
- data/doc/api/more/classes/Web.html +0 -103
- data/doc/api/more/classes/Web/Cookie.html +0 -560
- data/doc/api/more/classes/Web/CookieManager.html +0 -567
- data/doc/api/more/classes/Web/CookieManager/Error.html +0 -96
- data/doc/api/more/classes/Web/CookieManager/ErrorOverrideOK.html +0 -94
- data/doc/api/more/classes/Web/CookieManager/NoDotError.html +0 -94
- data/doc/api/more/classes/Web/CookieManager/SpecialError.html +0 -94
- data/doc/api/more/classes/Web/CookieUtils.html +0 -179
- data/doc/api/more/classes/XMLBuilder.html +0 -132
- data/doc/api/more/classes/XMLHelper.html +0 -428
- data/doc/api/more/classes/XOXO.html +0 -251
- data/doc/api/more/classes/YAMLStruct.html +0 -166
- data/doc/api/more/created.rid +0 -1
- data/doc/api/more/files/COPYING.html +0 -517
- data/doc/api/more/files/README.html +0 -389
- data/doc/api/more/files/lib/facets/more/annattr_rb.html +0 -116
- data/doc/api/more/files/lib/facets/more/annotation_rb.html +0 -117
- data/doc/api/more/files/lib/facets/more/ansicode_rb.html +0 -128
- data/doc/api/more/files/lib/facets/more/aspects_rb.html +0 -115
- data/doc/api/more/files/lib/facets/more/association_rb.html +0 -111
- data/doc/api/more/files/lib/facets/more/basicobject_rb.html +0 -129
- data/doc/api/more/files/lib/facets/more/bbcode_rb.html +0 -111
- data/doc/api/more/files/lib/facets/more/binaryreader_rb.html +0 -111
- data/doc/api/more/files/lib/facets/more/bitmask_rb.html +0 -111
- data/doc/api/more/files/lib/facets/more/blankslate_rb.html +0 -113
- data/doc/api/more/files/lib/facets/more/builderobject_rb.html +0 -115
- data/doc/api/more/files/lib/facets/more/bytes_rb.html +0 -131
- data/doc/api/more/files/lib/facets/more/classmethods_rb.html +0 -121
- data/doc/api/more/files/lib/facets/more/cloneable_rb.html +0 -132
- data/doc/api/more/files/lib/facets/more/command_rb.html +0 -119
- data/doc/api/more/files/lib/facets/more/cookie_rb.html +0 -136
- data/doc/api/more/files/lib/facets/more/coroutine_rb.html +0 -111
- data/doc/api/more/files/lib/facets/more/crypt_rb.html +0 -146
- data/doc/api/more/files/lib/facets/more/dictionary_rb.html +0 -123
- data/doc/api/more/files/lib/facets/more/downloader_rb.html +0 -124
- data/doc/api/more/files/lib/facets/more/elementor_rb.html +0 -115
- data/doc/api/more/files/lib/facets/more/enumerablepass_rb.html +0 -115
- data/doc/api/more/files/lib/facets/more/expirable_rb.html +0 -111
- data/doc/api/more/files/lib/facets/more/filelist_rb.html +0 -128
- data/doc/api/more/files/lib/facets/more/floatstring_rb.html +0 -115
- data/doc/api/more/files/lib/facets/more/functor_rb.html +0 -116
- data/doc/api/more/files/lib/facets/more/hashbuilder_rb.html +0 -115
- data/doc/api/more/files/lib/facets/more/heap_rb.html +0 -131
- data/doc/api/more/files/lib/facets/more/htmlbuilder_rb.html +0 -116
- data/doc/api/more/files/lib/facets/more/htmlhelper_rb.html +0 -119
- data/doc/api/more/files/lib/facets/more/http_rb.html +0 -116
- data/doc/api/more/files/lib/facets/more/httpaccess_rb.html +0 -137
- data/doc/api/more/files/lib/facets/more/inheritor_rb.html +0 -115
- data/doc/api/more/files/lib/facets/more/interval_rb.html +0 -120
- data/doc/api/more/files/lib/facets/more/ioredirect_rb.html +0 -116
- data/doc/api/more/files/lib/facets/more/json_rb.html +0 -141
- data/doc/api/more/files/lib/facets/more/lazy_rb.html +0 -111
- data/doc/api/more/files/lib/facets/more/lisp_format_rb.html +0 -129
- data/doc/api/more/files/lib/facets/more/lisp_rb.html +0 -119
- data/doc/api/more/files/lib/facets/more/lrucache_rb.html +0 -111
- data/doc/api/more/files/lib/facets/more/mathconstants_rb.html +0 -121
- data/doc/api/more/files/lib/facets/more/methodprobe_rb.html +0 -111
- data/doc/api/more/files/lib/facets/more/mock_rb.html +0 -208
- data/doc/api/more/files/lib/facets/more/multipliers_rb.html +0 -115
- data/doc/api/more/files/lib/facets/more/multiton_rb.html +0 -114
- data/doc/api/more/files/lib/facets/more/nackclass_rb.html +0 -151
- data/doc/api/more/files/lib/facets/more/nilcomparable_rb.html +0 -118
- data/doc/api/more/files/lib/facets/more/nullclass_rb.html +0 -111
- data/doc/api/more/files/lib/facets/more/one_rb.html +0 -158
- data/doc/api/more/files/lib/facets/more/opencascade_rb.html +0 -129
- data/doc/api/more/files/lib/facets/more/openobject_rb.html +0 -120
- data/doc/api/more/files/lib/facets/more/orderedhash_rb.html +0 -113
- data/doc/api/more/files/lib/facets/more/ormsupport_rb.html +0 -125
- data/doc/api/more/files/lib/facets/more/overload_rb.html +0 -111
- data/doc/api/more/files/lib/facets/more/paramix_rb.html +0 -118
- data/doc/api/more/files/lib/facets/more/pathlist_rb.html +0 -111
- data/doc/api/more/files/lib/facets/more/pool_rb.html +0 -120
- data/doc/api/more/files/lib/facets/more/pqueue_rb.html +0 -122
- data/doc/api/more/files/lib/facets/more/preinitialize_rb.html +0 -115
- data/doc/api/more/files/lib/facets/more/progressbar_rb.html +0 -111
- data/doc/api/more/files/lib/facets/more/promoteself_rb.html +0 -111
- data/doc/api/more/files/lib/facets/more/quaternion_rb.html +0 -150
- data/doc/api/more/files/lib/facets/more/recorder_rb.html +0 -115
- data/doc/api/more/files/lib/facets/more/reference_rb.html +0 -115
- data/doc/api/more/files/lib/facets/more/rexmlbuilder_rb.html +0 -116
- data/doc/api/more/files/lib/facets/more/rtals_rb.html +0 -115
- data/doc/api/more/files/lib/facets/more/semaphore_rb.html +0 -111
- data/doc/api/more/files/lib/facets/more/snapshot_rb.html +0 -121
- data/doc/api/more/files/lib/facets/more/stateparser_rb.html +0 -115
- data/doc/api/more/files/lib/facets/more/statichash_rb.html +0 -133
- data/doc/api/more/files/lib/facets/more/syncarray_rb.html +0 -115
- data/doc/api/more/files/lib/facets/more/synchash_rb.html +0 -115
- data/doc/api/more/files/lib/facets/more/system_rb.html +0 -123
- data/doc/api/more/files/lib/facets/more/tagiterator_rb.html +0 -111
- data/doc/api/more/files/lib/facets/more/taskable_rb.html +0 -118
- data/doc/api/more/files/lib/facets/more/timer_rb.html +0 -127
- data/doc/api/more/files/lib/facets/more/times_rb.html +0 -127
- data/doc/api/more/files/lib/facets/more/tracepoint_rb.html +0 -131
- data/doc/api/more/files/lib/facets/more/tuple_rb.html +0 -122
- data/doc/api/more/files/lib/facets/more/typecast_rb.html +0 -133
- data/doc/api/more/files/lib/facets/more/uninheritable_rb.html +0 -111
- data/doc/api/more/files/lib/facets/more/units_rb.html +0 -118
- data/doc/api/more/files/lib/facets/more/xmlbuilder_rb.html +0 -116
- data/doc/api/more/files/lib/facets/more/xmlhelper_rb.html +0 -111
- data/doc/api/more/files/lib/facets/more/xoxo_rb.html +0 -125
- data/doc/api/more/files/lib/facets/more/yamlstruct_rb.html +0 -123
- data/doc/api/more/fr_class_index.html +0 -196
- data/doc/api/more/fr_file_index.html +0 -133
- data/doc/api/more/fr_method_index.html +0 -1284
- data/doc/api/more/index.html +0 -26
- data/doc/api/more/rdoc-style.css +0 -175
- data/doc/web/documentation.html +0 -174
- data/doc/web/images/abc.png +0 -0
- data/doc/web/images/abc1.png +0 -0
- data/doc/web/images/apple_core.jpg +0 -0
- data/doc/web/images/apples3.jpg +0 -0
- data/doc/web/images/core.jpg +0 -0
- data/doc/web/images/favicon.ico +0 -0
- data/doc/web/images/gray.jpg +0 -0
- data/doc/web/images/ruby-lg.png +0 -0
- data/doc/web/images/ruby.gif +0 -0
- data/doc/web/images/three_apples.jpg +0 -0
- data/doc/web/images/yellow_fade.jpg +0 -0
- data/doc/web/images/yellow_fade2.jpg +0 -0
- data/doc/web/index.html +0 -224
- data/doc/web/style.css +0 -153
- data/lib/facet/blankslate.rb +0 -1
- data/lib/facet/hash/symoblize_keys.rb +0 -1
- data/lib/facet/kernel/generate_method_name.rb +0 -1
- data/lib/facet/module/generate_instance_method_name.rb +0 -1
- data/lib/facets/core/hash/symoblize_keys.rb +0 -2
- data/lib/facets/core/kernel/generate_method_name.rb +0 -39
- data/lib/facets/core/module/generate_instance_method_name.rb +0 -47
- data/lib/facets/more/blankslate.rb +0 -7
- data/proj/calibre/ProjectInfo.annotation +0 -46
- data/proj/calibre/ProjectInfo.ansicode +0 -33
- data/proj/calibre/ProjectInfo.asociation +0 -34
- data/proj/calibre/ProjectInfo.basicobject +0 -36
- data/proj/calibre/ProjectInfo.bbcode +0 -34
- data/proj/calibre/ProjectInfo.binaryreader +0 -35
- data/proj/calibre/ProjectInfo.bitmask +0 -33
- data/proj/calibre/ProjectInfo.classinherit +0 -36
- data/proj/calibre/ProjectInfo.classmethods +0 -36
- data/proj/calibre/ProjectInfo.cloneable +0 -33
- data/proj/calibre/ProjectInfo.consoleapp +0 -35
- data/proj/calibre/ProjectInfo.coroutine +0 -37
- data/proj/calibre/ProjectInfo.crypt +0 -33
- data/proj/calibre/ProjectInfo.dictionary +0 -40
- data/proj/calibre/ProjectInfo.downloader +0 -39
- data/proj/calibre/ProjectInfo.enumerablepass +0 -35
- data/proj/calibre/ProjectInfo.expirable +0 -37
- data/proj/calibre/ProjectInfo.floatstring +0 -35
- data/proj/calibre/ProjectInfo.functor +0 -40
- data/proj/calibre/ProjectInfo.heap +0 -33
- data/proj/calibre/ProjectInfo.inheritor +0 -36
- data/proj/calibre/ProjectInfo.interval +0 -36
- data/proj/calibre/ProjectInfo.lisp +0 -38
- data/proj/calibre/ProjectInfo.lrucache +0 -34
- data/proj/calibre/ProjectInfo.mathconstants +0 -41
- data/proj/calibre/ProjectInfo.methodprobe +0 -38
- data/proj/calibre/ProjectInfo.mock +0 -34
- data/proj/calibre/ProjectInfo.multiton +0 -36
- data/proj/calibre/ProjectInfo.nackclass +0 -33
- data/proj/calibre/ProjectInfo.nilcomparable +0 -35
- data/proj/calibre/ProjectInfo.nullclass +0 -35
- data/proj/calibre/ProjectInfo.one +0 -37
- data/proj/calibre/ProjectInfo.openobject +0 -39
- data/proj/calibre/ProjectInfo.paramix +0 -38
- data/proj/calibre/ProjectInfo.pool +0 -33
- data/proj/calibre/ProjectInfo.progressbar +0 -37
- data/proj/calibre/ProjectInfo.reference +0 -36
- data/proj/calibre/ProjectInfo.semaphore +0 -36
- data/proj/calibre/ProjectInfo.stateparser +0 -39
- data/proj/calibre/ProjectInfo.statichash +0 -33
- data/proj/calibre/ProjectInfo.system +0 -34
- data/proj/calibre/ProjectInfo.tagiterator +0 -36
- data/proj/calibre/ProjectInfo.timer +0 -35
- data/proj/calibre/ProjectInfo.tracepoint +0 -37
- data/proj/calibre/ProjectInfo.tuple +0 -36
- data/proj/calibre/ProjectInfo.uniheritable +0 -34
- data/proj/calibre/ProjectInfo.units +0 -34
- data/proj/calibre/ProjectInfo.yamlstruct +0 -34
- data/proj/info +0 -117
- data/proj/metadata +0 -36
- data/proj/tasks/calibre.rb +0 -15
- data/snip/ProjectInfo +0 -115
- data/snip/README +0 -13
- data/snip/TODO +0 -73
- data/snip/autorequire.rb +0 -83
- data/snip/core/array/at_rand.rb +0 -95
- data/snip/core/array/each_slice.rb +0 -23
- data/snip/core/array/pick_values.rb +0 -32
- data/snip/core/array/rand_indexes.rb +0 -33
- data/snip/core/binding/class.rb +0 -11
- data/snip/core/binding/delegate-binding.rb +0 -19
- data/snip/core/binding/delegate.rb +0 -15
- data/snip/core/binding/proc.rb +0 -6
- data/snip/core/class/to_module.rb +0 -3
- data/snip/core/enumerable/op_fetch.rb +0 -30
- data/snip/core/fileutils/nl_convert.rb +0 -133
- data/snip/core/io/expect.rb +0 -127
- data/snip/core/kernel/__clone__.rb +0 -4
- data/snip/core/kernel/__dup__.rb +0 -4
- data/snip/core/kernel/call_line.rb +0 -15
- data/snip/core/kernel/does.rb +0 -7
- data/snip/core/kernel/message.rb +0 -6
- data/snip/core/kernel/query.rb +0 -15
- data/snip/core/kernel/taint.rb +0 -10
- data/snip/core/logger/clean_logger.rb +0 -10
- data/snip/core/module/attr-old.rb +0 -308
- data/snip/core/module/attr.rb +0 -98
- data/snip/core/module/attr_xxx.rb +0 -22
- data/snip/core/module/by_regexp.rb +0 -21
- data/snip/core/module/cast.rb +0 -64
- data/snip/core/module/class_attribute_accessors.rb +0 -57
- data/snip/core/module/inherit.rb +0 -99
- data/snip/core/module/inherit0.rb +0 -59
- data/snip/core/module/let.rb +0 -51
- data/snip/core/module/meta_attr.rb +0 -60
- data/snip/core/module/module_attribute_accessors.rb +0 -57
- data/snip/core/module/permissions.rb +0 -32
- data/snip/core/module/preserved.rb +0 -108
- data/snip/core/module/sattr_accessor.rb +0 -1
- data/snip/core/module/sattr_reader.rb +0 -1
- data/snip/core/module/sattr_setter.rb +0 -1
- data/snip/core/module/sattr_tester.rb +0 -1
- data/snip/core/module/sattr_writer.rb +0 -1
- data/snip/core/module/tc_attr.rb +0 -107
- data/snip/core/module/to_module.rb +0 -37
- data/snip/core/module/version.rb +0 -23
- data/snip/core/string/frequency.rb +0 -40
- data/snip/core/string/op_add.rb +0 -24
- data/snip/core/string/op_div.rb +0 -15
- data/snip/core/string/pred.rb +0 -217
- data/snip/core/string/probability.rb +0 -35
- data/snip/core/string/to_arr.rb +0 -57
- data/snip/core/string/to_ary.rb +0 -12
- data/snip/core/string/word_wrap.rb +0 -62
- data/snip/more/actionplan.rb +0 -21
- data/snip/more/autoarray.rb +0 -29
- data/snip/more/cache.rb +0 -189
- data/snip/more/capsule2.rb +0 -152
- data/snip/more/class_inheritable_attributes.rb +0 -120
- data/snip/more/classinherit.rb +0 -198
- data/snip/more/clean.rb +0 -35
- data/snip/more/codepack.rb +0 -64
- data/snip/more/commandrunner.rb +0 -101
- data/snip/more/conditionals.rb +0 -106
- data/snip/more/contracts.rb +0 -37
- data/snip/more/daemon.rb +0 -70
- data/snip/more/datetime.rb +0 -42
- data/snip/more/detach.rb +0 -423
- data/snip/more/enumtype.rb +0 -115
- data/snip/more/fixnum_const.rb +0 -55
- data/snip/more/function.rb +0 -278
- data/snip/more/hookse.rb +0 -107
- data/snip/more/indexable.rb +0 -85
- data/snip/more/infinity.rb +0 -123
- data/snip/more/ioreactor.rb +0 -671
- data/snip/more/knowself.rb +0 -42
- data/snip/more/logger_sing.rb +0 -207
- data/snip/more/must.rb +0 -37
- data/snip/more/openproxy.rb +0 -245
- data/snip/more/ostructable.rb +0 -212
- data/snip/more/pairhash.rb +0 -55
- data/snip/more/pathname.rb +0 -1309
- data/snip/more/prereq.rb +0 -36
- data/snip/more/print_exception.rb +0 -35
- data/snip/more/rand.rb +0 -412
- data/snip/more/range.rb +0 -383
- data/snip/more/sanitize.rb +0 -48
- data/snip/more/service.rb +0 -266
- data/snip/more/superstruct.rb +0 -735
- data/snip/more/tag.rb +0 -27
- data/snip/more/testfacility.rb +0 -80
- data/snip/more/timer.rb +0 -164
- data/snip/more/toplevel.rb +0 -76
- data/snip/more/type.rb +0 -232
- data/snip/more/vars.rb +0 -94
- data/snip/more/version.rb +0 -245
- data/snip/more/world.rb +0 -53
- data/snip/reference/sys.rb +0 -186
- data/snip/reference/utils.rb +0 -518
- data/test/lib/facets/core/kernel/test_generate_method_name.rb +0 -26
- data/test/lib/facets/core/module/test_generate_instance_method_name.rb +0 -33
@@ -0,0 +1,337 @@
|
|
1
|
+
= Facets Change Log
|
2
|
+
|
3
|
+
== 1.4.4
|
4
|
+
* added nil#status - Allows a messgae to be passed through
|
5
|
+
a failure chain.
|
6
|
+
* added module#alias_method_chain - from rails this is clever
|
7
|
+
idiom for module-based method wrapping. A limited
|
8
|
+
solution, but since there's no standard solution as
|
9
|
+
of yet, well support til then.
|
10
|
+
* added enumerable#cascade - cascade a list of actions on each
|
11
|
+
element of an enumerable. Better name for this?
|
12
|
+
* method missing in htmlbuilder effected by BasicObject fix
|
13
|
+
(use __self__.method instead of __metod__)
|
14
|
+
* minor update to functor.rb. Added @self = function.binding.self.
|
15
|
+
Still tweaking for best meta informatin access.
|
16
|
+
* change WebAgent to Web
|
17
|
+
* Removed hash/keys_to_iv b/c it is a poor name. Since the alternative
|
18
|
+
of #keys_to_instance_variables conveys the wrong idea, decided to just
|
19
|
+
get rid of this. Instead use the hash#variablize_keys which is also
|
20
|
+
Rails compatibile.
|
21
|
+
|
22
|
+
===1.4.1-1.4.2
|
23
|
+
* Started using Darcs --finally!
|
24
|
+
* Transition to Darcs has interupted ChangeLog though :(
|
25
|
+
* Mostly minor fixes in prepeartion for official 1.4 release.
|
26
|
+
* Adjusted BasicObject slightly, further reducing unhidden methods.
|
27
|
+
Among them __object__, __method__ and #as. Also added method_missing
|
28
|
+
that detects shadow methods and rebinds them to Object. Keep in mind
|
29
|
+
that woun't help you if you override method_missing which is
|
30
|
+
typical for this class.
|
31
|
+
* Fixed bug in BasicObject#__self__.
|
32
|
+
|
33
|
+
== 1.4.0
|
34
|
+
* Added Cookie, HTTP and HTTPAccess of ...'s library.
|
35
|
+
* OpenObject's __get__ and __set__ methods have been changed
|
36
|
+
to __fetch__ and __store__ to correspond to the Hash methods.
|
37
|
+
* Added OpenCascade, which is like OpenObject but chains access.
|
38
|
+
* Added ...'s lazy.rb which include's Future and Promise classes.
|
39
|
+
* Added task.rb, which provides a Rake interface compatible task
|
40
|
+
system, but that can be used in any code.
|
41
|
+
* Improved Hash#traverse (it now does all traversing before yielding).
|
42
|
+
* kernel/me, kernel/methodname and kernel/method_name have all been
|
43
|
+
deprecated in favor of the 1.9 standard kernel/__method__ and
|
44
|
+
kernel/__callee__.
|
45
|
+
* Console::Application is deprecated and is no longer an alias for
|
46
|
+
Console::Command.
|
47
|
+
* Console::Command also now supports run-on flags (eg. -xvzf).
|
48
|
+
* More's classinherit.rb has been removed, and classmethods.rb will be
|
49
|
+
too in another version or two. You should transition all uses of
|
50
|
+
these to core/module/class_extension.rb.
|
51
|
+
* Updated tuple.rb so that when a string is converted to a Tuple (#to_t)
|
52
|
+
the values wll be made integers if they are composed of only numbers.
|
53
|
+
If you need all strings you can use a block since the block bypasses
|
54
|
+
this auto coercement, eg. to_t{ |v| v }.
|
55
|
+
|
56
|
+
== 1.3.1
|
57
|
+
* Deprecated string/to_arr, and slightly adjusted string#to_a.
|
58
|
+
(Not commonly used so not a major change.)
|
59
|
+
* Minor bug fixes.
|
60
|
+
|
61
|
+
== 1.3.0
|
62
|
+
* Ported parts of Nitro's Glue library to Facets.
|
63
|
+
* more/aspects.rb
|
64
|
+
* core/module/on_included.rb
|
65
|
+
* core/module/expirable.rb
|
66
|
+
* core/enumerable/accumulate.rb
|
67
|
+
* Added xoxo.rb, json.rb and rtals.rb.
|
68
|
+
* Repaired missing data files for units.rb.
|
69
|
+
* Moved cattr methods from module/ to class/.
|
70
|
+
* mattr methods are in limbo at the moment.
|
71
|
+
(They were aliases for cattr.)
|
72
|
+
|
73
|
+
== 1.2.1
|
74
|
+
* kernel/meta has been renamed to kernel/instance
|
75
|
+
|
76
|
+
== 1.2.0
|
77
|
+
* Added zimba.tm's string/modulize, pathize and methodize.
|
78
|
+
* Added some Gem methods, self/active?, self/gemspec, self/gempath.
|
79
|
+
|
80
|
+
== 1.0.3
|
81
|
+
* A last ditch attempt to keep facets and calibre as one project.
|
82
|
+
|
83
|
+
== 1.0.2
|
84
|
+
* Added _why's Array modulo.
|
85
|
+
|
86
|
+
== 1.0.0
|
87
|
+
* Sped up string#similarity.
|
88
|
+
* By popular protest deprecated usage of "AClass.use Facets, :amethod".
|
89
|
+
* Created nicer layout of facets/support, /group, /english (one day /method).
|
90
|
+
* Odd sets of facets have been move to facets/group/, eg. facets/group/inflect.
|
91
|
+
* All is now well preped for a Rolls release shoud that come about.
|
92
|
+
|
93
|
+
== v0.10.30 Halloween
|
94
|
+
* Change OrderedHash (ohash.rb) to Dictionary (dictionary.rb).
|
95
|
+
* Change BlankSlate (blankslate.rb) to BasicObject (basicobject.rb).
|
96
|
+
* Old versions of the above should still work, but throw warnings
|
97
|
+
and will stop working come next version.
|
98
|
+
* 1.rb has been renamed to one.rb (I know, two more characters,
|
99
|
+
but you can do it! ;)
|
100
|
+
* Methods enumerable/op_mod (%) and enumerable/eF are deprecated.
|
101
|
+
Use #every or #ew instead.
|
102
|
+
|
103
|
+
== v0.10.11 Palapable
|
104
|
+
* Merged Mega into Facets. I put the old Mega ChangeLog at
|
105
|
+
the bottom of this document.
|
106
|
+
* This represents the One-Point-Oh realease (albeit RC1) of
|
107
|
+
Facets, but from now on I'll be using date versioning
|
108
|
+
--if you look at the versions below you may understand why.
|
109
|
+
The versioning sequence has no real rationality.
|
110
|
+
Instead I will use this simple Rational Versioning Policy:
|
111
|
+
* If YYYY-MM-DD it's a development release.
|
112
|
+
* If YYYY-MM it's an official release.
|
113
|
+
* If just YYYY it's hella stable.
|
114
|
+
One might argue this is not as robust as a compatability
|
115
|
+
significant point-based versioning system, but I'd say that's
|
116
|
+
all well and good in theory, now give me something that actually
|
117
|
+
works in practice.
|
118
|
+
|
119
|
+
== v0.9.5 Rebirth
|
120
|
+
* Rebirth of Facets! As cool as the name Nano is, it became clear
|
121
|
+
that most people are drawn toward the name Facets. So we are
|
122
|
+
reverting back. Nonetheless Nano will remain a viable alias for
|
123
|
+
Facets.
|
124
|
+
* Must now use <code>require 'facets'</code> prior to using
|
125
|
+
other Facets. This does two things. First it loads the
|
126
|
+
base methods, which ensures that all programs have them
|
127
|
+
readibly available when using Facets. Secondly it supplements
|
128
|
+
#require to handle aliases. In essence, require 'facet/...',
|
129
|
+
require 'facets/...' and require 'nano/...' all point to the
|
130
|
+
same place(s). (NOTE This is a precursor to a more universal
|
131
|
+
system that will handle aliasing automatically.)
|
132
|
+
* kernel/require_esc has been removed. #require_nano will be also
|
133
|
+
in the next release. These will no longer be needed thanks to
|
134
|
+
the aliasing system.
|
135
|
+
|
136
|
+
== v0.9.2 Littles
|
137
|
+
* Added string/starts_with? and string/ends_with?
|
138
|
+
* Fixed module/memoize to cache on a per class/module bases.
|
139
|
+
* Added module/is as an alias for /include.
|
140
|
+
* Added module/shadow_method and shadow_all.
|
141
|
+
* Renamed module/superup (which was module/supers) to module/as. And defined a new
|
142
|
+
method called /superior which is like /super but skips to a sepecified ancestor.
|
143
|
+
* Renamed module/super_send to module/send_as.
|
144
|
+
|
145
|
+
== v0.9.1 Wraps
|
146
|
+
* Added module/nesting (not to be confused with the class method Module::nesting).
|
147
|
+
* Thanks goes to Gavien Kistner for new string/word_wrap methods
|
148
|
+
(with additioanl thanks to Dyane Borderson for his suggestions).
|
149
|
+
* Added hash/each_with_key and each_with_index, as well as array/each_with_key;
|
150
|
+
increasing polymorphism between the two classes.
|
151
|
+
* Moved array/each_pair to enumerable/each_pair and changed how it worked to
|
152
|
+
what one might expect.
|
153
|
+
|
154
|
+
== v0.9.0 NotUorI
|
155
|
+
* Deprecated object#special_class, which was a method for (class<<self;self;end).
|
156
|
+
Already have too many aliases for this, and though the name is fitting, the simpler
|
157
|
+
method #own is better (alternative: #singleton).
|
158
|
+
* Fixed enumerable/uniq_by file which was misnamed 'unique_by.rb'.
|
159
|
+
* BIG CHANGE! Got rid of URI encoding on file names and sub'd a converson table
|
160
|
+
of english readable names. Thanks Jeff Wood, Florain Gross, Dav Burt,
|
161
|
+
Gavin Kistner, James Edward Gray II, Brian Schröder, Mauricio Fernández,
|
162
|
+
David A. Black, Gavin Sinclair, Nikolai Weibull and Christian Neukirchen.
|
163
|
+
|
164
|
+
== v0.8.3 UorI
|
165
|
+
* Added kernel/uri and kernel/unuri
|
166
|
+
* (Good idea?) removed methods module/sattr, sattr_reader, &c. Instead created object/meta
|
167
|
+
in which attr, attr_reader, &c. are made public. So, sattr -> meta.attr.
|
168
|
+
* Added array/unzip
|
169
|
+
* Added logger/format and logger/format_message (stub).
|
170
|
+
* Added string/dequote.
|
171
|
+
* Class method file names now begin with '::' to separate them from instance methods.
|
172
|
+
|
173
|
+
== v0.8.2 Nano Revolution
|
174
|
+
* Name Change! What was Ruby Facets is now Nano Methods!
|
175
|
+
* New minor version as there has been a change of plans with the integration of what was Carats.
|
176
|
+
The classes and modules have been reseperated into their own project called Mega Modules.
|
177
|
+
* Modified the #firstxxx/#lastxxx methods to be more congruent and comprehensible.
|
178
|
+
* Renamed object/supers to object/superup. Better!
|
179
|
+
* Got rid ot symbol/gen. Use object/generate_method_name or module#generate_instance_method_name
|
180
|
+
instead ( Is that the longest non-foo method name ever? :)
|
181
|
+
* The file 1st.rb has moved to object/method. This modifies #method to persist the returned
|
182
|
+
Method object. The original non-persitent version of #method is aliased to #original_method.
|
183
|
+
(This arrangement is not set in stone though, and is still be considered.)
|
184
|
+
* Added module/clone_using, module/clone_ranaming and module/clone_removing.
|
185
|
+
* Added module/integrate (I love this one!)
|
186
|
+
* Added many new enumerable methods: #filter_map, #compact_map, #commonality, #frequency,
|
187
|
+
#probability and #find_collisions.
|
188
|
+
* Moved some methods from array to enumerable: #each_permutation, #each_combination,
|
189
|
+
#each_unique_pair and the class method ::combinations.
|
190
|
+
* Added string/bytes per ruby-dev summary 26385-26467.
|
191
|
+
* Moved #cattr_reader, #cattr_writer and #cattr_accessor from Class to Module.
|
192
|
+
* Renamed numeric/octet_units to numeric/bytes_to_s and added a #bits_to_s as well.
|
193
|
+
* Added class/descendants (alias subclasses) and class/remove_descendents, as well as
|
194
|
+
object/descendents_of and object/remove_descendents_of.
|
195
|
+
* Added methods to comparable: #cap, #clip. There are also #at_least and
|
196
|
+
#at_most, although FYI #cap and #clip handle the same functionality.
|
197
|
+
* Removed string/table_name and string/class_name (they were too Rails specific).
|
198
|
+
Note: A new module has been added to Mega Modules, called orm-inflect.rb. It contains numerous
|
199
|
+
methods for doing this sort of thing.
|
200
|
+
* Added numeric/ceil_multiple (not sure about name though, perhaps a better name like "ceil_to"?).
|
201
|
+
* Added string/soundex for calculating the soundex code of a word/name.
|
202
|
+
* Added io/expect. I thought Ruby already had this but can't find it, so here it is for now.
|
203
|
+
* Placed Florian's binding-of-caller.rb in binding/of_caller. Makes more sense there.
|
204
|
+
* Fixed bug with Continuation::create (it wasn't defined as a class method and should have been).
|
205
|
+
* Fixed bug with string/capitalized? which wasn't always giving the correct result.
|
206
|
+
|
207
|
+
== v0.7.2 George II
|
208
|
+
* Added a class method dir/recurse which allows one to loop through a dir and all its
|
209
|
+
subdirs, etc. It also has an alias #ls_r. Thanks goes to George Maschovitis for this.
|
210
|
+
* Changed array/permute to array/each_permutation.
|
211
|
+
|
212
|
+
== v0.7.1 Quick George
|
213
|
+
* Added facet.rb, although expiremental it makes it possible to use atomic methods without
|
214
|
+
specificaly requiring them. It uses Object#method_missing to require them as needed.
|
215
|
+
* Improved on "molecules", i.e. files that require numerous related atoms in a single go.
|
216
|
+
These will see a great deal of continued improvement in the future.
|
217
|
+
|
218
|
+
== v0.7.0 Georgian Transform
|
219
|
+
* All methods with names containing non-alphanumeric characters now have facet
|
220
|
+
files without those special characters. This removes some incompatibilites with
|
221
|
+
certain systems (including Windows). All such symbols have been replaced with
|
222
|
+
CGI escape sequences, for instance 'in?.rb' becomes 'in%3F.rb'. To avoid having
|
223
|
+
to use these "ugly" names, a new method has been added, kernel/require_facet.
|
224
|
+
* Methods that were grouped together in the same file have been separated
|
225
|
+
into their own files. Pure Atomicity has been achieved!
|
226
|
+
* The method array/put has been dropped in favor of array/top (as a better alias for #unshift).
|
227
|
+
* Methods #matchdata/post_match_from and #matchdata/pre_match_from have deprecated
|
228
|
+
in favor of more generalized methods that serves the same purposes,
|
229
|
+
matchdata/matchtree and matchdata/matchset.
|
230
|
+
* Added module/include_as.
|
231
|
+
* Added array/permute.
|
232
|
+
|
233
|
+
== v0.6.3 Gemstone
|
234
|
+
* Gem is now avaliable!
|
235
|
+
* Added kernel/require_all which allows one to require a pattern of files,
|
236
|
+
making it easy to require every file in a directory.
|
237
|
+
* Added hash/traverse and hash/traverse!, which takes a block and iterates over
|
238
|
+
each key-value pair descending into subhash values and applying the block.
|
239
|
+
(Thanks goes to Ara T. Howard and robert for their help.)
|
240
|
+
* Added hash/collect. This uses enumerable/graph so that
|
241
|
+
hash/collect will return a hash rather then an array.
|
242
|
+
* Added numeric/before and numeric/after in place of #ago and #since
|
243
|
+
and aliased #ago and #since to them, per the suggestions of
|
244
|
+
Francis Hwang.
|
245
|
+
* Added "poor man's profiler", time/elapse. (Thanks goes to Hal Fulton).
|
246
|
+
* Changed enumerable/build_hash to enumerable/graph. The method #build_hash
|
247
|
+
has been aliased to #graph for the time being for backward compatability.
|
248
|
+
* Added array/last_index. (Thanks goes to Jabari)
|
249
|
+
|
250
|
+
== v0.6.2 Refinement I
|
251
|
+
* Added kernel/resc as a shortcut for Regexp.escape.
|
252
|
+
* Renamed hash/keys_to_string to hash/key_to_s and
|
253
|
+
hash/keys_to_symbol to hash/keys_to_sym to be more consistant
|
254
|
+
with other methods and what these methods specifically do.
|
255
|
+
The old names have been deprecated.
|
256
|
+
* Added hash/has_keys?, which allows for checking mutliple keys at once.
|
257
|
+
Also includes #has_only_keys?
|
258
|
+
* Added Rail's Time and Byte modules for Numeric with
|
259
|
+
numeric/times.rb and numeric/bytes.rb (I've been informed that
|
260
|
+
thanks go to Richard Kilmer for this. Thanks!)
|
261
|
+
* Added numeric/octet_unit which utilizes numeric/bytes.
|
262
|
+
(The name of this method may change in the future though.)
|
263
|
+
* Added enumerable/uniq_by.
|
264
|
+
* Added module/abstract.
|
265
|
+
* Added module/redirect which is similar to alias, but does not
|
266
|
+
copy the method, but rather wraps it. It also takes a hash so
|
267
|
+
multiple methods can be redirected all at once.
|
268
|
+
* Added string/shatter which is similar to split but includes
|
269
|
+
the matched portions of text.
|
270
|
+
|
271
|
+
== v0.6.1 Florian's Mixes
|
272
|
+
* Updated the current set of mix files which were still from
|
273
|
+
version 0.5.0. (2004-12-31)
|
274
|
+
|
275
|
+
== v0.6.0 Florian's Onslaught
|
276
|
+
* Major revisions made by Florian's onslaught. (2004-12-28)
|
277
|
+
* First general public release.
|
278
|
+
|
279
|
+
== v0.5.0 Fit for First
|
280
|
+
* This is the beginning of offical releases. (2004-12-23)
|
281
|
+
* Now called Facets.
|
282
|
+
* Changed layout to be completely atomic! (2004-10-30)
|
283
|
+
|
284
|
+
== v0.4.0 Raspberry
|
285
|
+
* Scoured the Ruby world for useful additions.
|
286
|
+
* Changed name again from A.B.C. to Raspberry.
|
287
|
+
I can't seem to settle on a name. Even the new
|
288
|
+
subsections have changed five times. (2004-08-08)
|
289
|
+
|
290
|
+
== v0.3.0 ABC
|
291
|
+
* Reorganinzed all of this together in a nice neat way.
|
292
|
+
* Changed name of library from Succ to A.B.C.
|
293
|
+
which stands for All Base Common. (2004-02-02)
|
294
|
+
|
295
|
+
== v0.2.0 Succ
|
296
|
+
* A number of new methods added.
|
297
|
+
* Renamed it Succ for "successor". (2003-05-31)
|
298
|
+
|
299
|
+
== v0.1.0 TomsLib
|
300
|
+
* Tomslib's just a few useful methods. (2002-07-01)
|
301
|
+
|
302
|
+
|
303
|
+
== Old Mega/Carats ChangeLog
|
304
|
+
|
305
|
+
== v0.4.0
|
306
|
+
* Adjusted Tuple to use Tuple::[*args] instead of ::new, which now takes
|
307
|
+
a single argument instead, either an Array or a String which it splits.
|
308
|
+
* Removed services.rb unitl in gets fixed and a better name.
|
309
|
+
|
310
|
+
== v0.3.3
|
311
|
+
* Added inheritable.rb, a lib for creating class vars inherit from ancestors
|
312
|
+
* Addes annotations.rb, a lightweight metadata system good for annotating
|
313
|
+
methods esspecially. It is built on top of inheritable.rb.
|
314
|
+
|
315
|
+
== 0.3.2
|
316
|
+
* Added services.rb, a lib for managing methods as first class objects
|
317
|
+
* Fixed/cleaned-up orm_supprt.rb
|
318
|
+
|
319
|
+
== 0.3.1
|
320
|
+
* Aliased #autoload_classes with #autorequire.
|
321
|
+
* Added #strfbits and #strfbytes to binary_multiplers.rb.
|
322
|
+
|
323
|
+
== 0.3.0
|
324
|
+
* Name change to Mega Modules!
|
325
|
+
* Added a few important files: multipliers.rb, binary_multipliers.rb,
|
326
|
+
time_in_english.rb and orm_inlectors.rb.
|
327
|
+
* Each one of these is a "Methods Module", i.e. They are a collection of
|
328
|
+
closely related methods that modify one or more core classes/modules.
|
329
|
+
Individually these methods could have very well ended up in Nano Methods,
|
330
|
+
but given there quantity and interrelation they were more suitable to a
|
331
|
+
module, and thus placed here.
|
332
|
+
|
333
|
+
== 0.2.0
|
334
|
+
* Initial public release
|
335
|
+
|
336
|
+
== 0.1.0
|
337
|
+
* Early Development as Ruby Carats
|
data/doc/LATEST
ADDED
@@ -0,0 +1,41 @@
|
|
1
|
+
|
2
|
+
The 1.4 series of Facets is now official!
|
3
|
+
|
4
|
+
There are have been quite a few improvements since the last offical release. The single biggest change is actually completely behind the scenes. Darcs is now being usd as the revision control system. Darcs really is a dream to use and should make it easier for others to contribute to the project. (I only wish Rubyforge and Tracs would gear up their Darcs support.)
|
5
|
+
|
6
|
+
Here are the other major highlights of 1.4 series:
|
7
|
+
|
8
|
+
* Added nilclass/status which allows a message to be passed through a failure chain.
|
9
|
+
|
10
|
+
* Added enumerable/cascade, a cascade a list of actions on each element of an enumerable. Thanks to Sean O'Halpin for this.
|
11
|
+
|
12
|
+
* Removed hash/keys_to_iv because it is a poor name. Since the alternative of 'keys_to_instance_variables' conveys the wrong idea, we simply deprecated it in favor of the Rails compatible #variablize_keys.
|
13
|
+
|
14
|
+
* Fixed bug in BasicObject#__self__.
|
15
|
+
|
16
|
+
* Addedd Cookie, HTTP and HTTPAccess of Hiroshi Nakamura's httpaccess2.rb library. Cookie has been moved to Web namespace.
|
17
|
+
|
18
|
+
* OpenObject's __get__ and __set__ methods have been changed to __fetch__ and __store__ to correspond to the Hash methods.
|
19
|
+
|
20
|
+
* Added OpenCascade, which is like OpenObject but chains access.
|
21
|
+
|
22
|
+
* Included MenTaLguY's lazy.rb which include's Future and Promise classes. Cool lib!
|
23
|
+
|
24
|
+
* Created task.rb, which provides a Rake interface compatible task system, but that can be used in any code. Instead of defining tasks globally it defines them as methods of the current module or class. This makes the "task pattern" reusable.
|
25
|
+
|
26
|
+
* Improved Hash#traverse (it now does all traversing before yielding).
|
27
|
+
|
28
|
+
* kernel/me, kernel/methodname and kernel/method_name have all been deprecated in favor of 1.9's kernel/__method__ and kernel/__callee__ (but why more __ methods if you don't like them, matz?)
|
29
|
+
|
30
|
+
* Console::Application is deprecated as an alias for Console::Command.
|
31
|
+
|
32
|
+
* Console::Command now supports run-on flags (eg. -xvzf).
|
33
|
+
|
34
|
+
* More's classinherit.rb has been removed, and classmethods.rb will eventaully be deprecated as well. You should transition all uses of these to the core method module/class_extension.
|
35
|
+
|
36
|
+
* Updated tuple.rb so that when a string is converted to a Tuple (#to_t) the values wll be made integers if they are composed of only numbers. If you need all strings you can use a block since the block bypasses auto coerce, eg. to_t{ |v| v }.
|
37
|
+
|
38
|
+
* If anyone missed the changes from 1.3 the main of them were the inclusion of xoxo.rb, json.rb and rtals.rb; the moving of the cattr methods from module/ to class/. The mattr methods are still being reconsidered (They were aliases for cattr.); and adding zimba.tm's string/modulize, pathize and methodize methods.
|
39
|
+
|
40
|
+
I see the gleen in your eye ;) Enjoy!
|
41
|
+
|
data/doc/manifest
ADDED
@@ -0,0 +1,1209 @@
|
|
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
|