facets 1.4.0 → 1.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/ProjectInfo +94 -0
- data/Reapfile +184 -0
- data/forge/README +13 -0
- data/forge/TODO +73 -0
- data/forge/autorequire.rb +83 -0
- data/forge/core/array/at_rand.rb +95 -0
- data/forge/core/array/each_slice.rb +23 -0
- data/forge/core/array/pick_values.rb +32 -0
- data/forge/core/array/rand_indexes.rb +33 -0
- data/forge/core/binding/class.rb +11 -0
- data/forge/core/binding/delegate-binding.rb +19 -0
- data/forge/core/binding/delegate.rb +15 -0
- data/forge/core/binding/proc.rb +6 -0
- data/forge/core/enumerable/op_fetch.rb +30 -0
- data/forge/core/fileutils/nl_convert.rb +133 -0
- data/forge/core/io/expect.rb +127 -0
- data/forge/core/kernel/__clone__.rb +4 -0
- data/forge/core/kernel/__dup__.rb +4 -0
- data/forge/core/kernel/call_line.rb +15 -0
- data/forge/core/kernel/does.rb +7 -0
- data/forge/core/kernel/message.rb +6 -0
- data/forge/core/kernel/query.rb +15 -0
- data/forge/core/kernel/taint.rb +10 -0
- data/forge/core/logger/clean_logger.rb +10 -0
- data/forge/core/module/attr-old.rb +308 -0
- data/forge/core/module/attr.rb +98 -0
- data/forge/core/module/attr_xxx.rb +22 -0
- data/forge/core/module/by_regexp.rb +21 -0
- data/forge/core/module/cast.rb +64 -0
- data/forge/core/module/class_attribute_accessors.rb +57 -0
- data/forge/core/module/inherit.rb +59 -0
- data/forge/core/module/let.rb +51 -0
- data/forge/core/module/meta_attr.rb +60 -0
- data/forge/core/module/module_attribute_accessors.rb +57 -0
- data/forge/core/module/permissions.rb +32 -0
- data/forge/core/module/preserved.rb +108 -0
- data/forge/core/module/sattr_accessor.rb +1 -0
- data/forge/core/module/sattr_reader.rb +1 -0
- data/forge/core/module/sattr_setter.rb +1 -0
- data/forge/core/module/sattr_tester.rb +1 -0
- data/forge/core/module/sattr_writer.rb +1 -0
- data/forge/core/module/tc_attr.rb +107 -0
- data/forge/core/module/version.rb +23 -0
- data/forge/core/string/op_add.rb +24 -0
- data/forge/core/string/op_div.rb +15 -0
- data/forge/core/string/pred.rb +217 -0
- data/forge/core/string/to_ary.rb +12 -0
- data/forge/core/string/word_wrap.rb +62 -0
- data/forge/more/autoarray.rb +29 -0
- data/forge/more/cache.rb +189 -0
- data/forge/more/class_inheritable_attributes.rb +120 -0
- data/forge/more/codepack.rb +58 -0
- data/forge/more/commandrunner.rb +101 -0
- data/forge/more/conditionals.rb +106 -0
- data/forge/more/contracts.rb +37 -0
- data/forge/more/daemon.rb +70 -0
- data/forge/more/datetime.rb +42 -0
- data/forge/more/detach.rb +423 -0
- data/forge/more/enumtype.rb +115 -0
- data/forge/more/fixnum_const.rb +55 -0
- data/forge/more/function.rb +278 -0
- data/forge/more/hookse.rb +107 -0
- data/forge/more/indexable.rb +85 -0
- data/forge/more/infinity.rb +123 -0
- data/forge/more/ioreactor.rb +671 -0
- data/forge/more/knowself.rb +42 -0
- data/forge/more/logger_sing.rb +207 -0
- data/forge/more/must.rb +37 -0
- data/forge/more/openproxy.rb +245 -0
- data/forge/more/ostructable.rb +212 -0
- data/forge/more/pairhash.rb +55 -0
- data/forge/more/pathname.rb +1309 -0
- data/forge/more/predicate.rb +181 -0
- data/forge/more/prereq.rb +36 -0
- data/forge/more/print_exception.rb +35 -0
- data/forge/more/rand.rb +412 -0
- data/forge/more/range.rb +383 -0
- data/forge/more/sanitize.rb +48 -0
- data/forge/more/service.rb +266 -0
- data/forge/more/superstruct.rb +735 -0
- data/forge/more/tag.rb +27 -0
- data/forge/more/testfacility.rb +80 -0
- data/forge/more/timer.rb +164 -0
- data/forge/more/toplevel.rb +76 -0
- data/forge/more/type.rb +232 -0
- data/forge/more/vars.rb +94 -0
- data/forge/more/version.rb +245 -0
- data/forge/more/world.rb +53 -0
- data/forge/reference/sys.rb +186 -0
- data/forge/reference/utils.rb +518 -0
- data/lib/facet/enumerable/mode.rb +1 -0
- data/lib/facets/core/enumerable/mode.rb +13 -0
- data/lib/facets/core/hash/to_ostruct.rb +1 -1
- data/lib/facets/core/hash/to_ostruct_recurse.rb +33 -6
- data/lib/facets/core/ostruct/__update__.rb +1 -0
- data/lib/facets/more/binaryreader.rb +3 -3
- data/lib/facets/more/taskable.rb +29 -0
- data/note/CHANGELOG +294 -0
- data/note/IMPORTANT +8 -0
- data/note/Rakefile.old +181 -0
- data/note/history/ANN-0.6.0 +40 -0
- data/note/history/ANN-0.6.1 +36 -0
- data/note/history/ANN-0.6.3 +43 -0
- data/note/history/ANN-0.7.0 +59 -0
- data/note/history/ANN-0.8.1 +127 -0
- data/note/history/INTRO +172 -0
- data/note/history/README +223 -0
- data/note/history/README-OLD +180 -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_keys_to_s.rb +1 -1
- data/test/lib/facets/core/hash/test_keys_to_sym.rb +1 -1
- 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_swap.rb +1 -1
- data/test/lib/facets/core/hash/test_swapkey.rb +1 -1
- 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 +15 -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_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_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_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_generate_method_name.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_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_methodname.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_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_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_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_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_generate_instance_method_name.rb +1 -1
- data/test/lib/facets/core/module/test_include_as.rb +1 -1
- data/test/lib/facets/core/module/test_inherit.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_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 -1
- data/test/lib/facets/core/proc/test_to_method.rb +1 -1
- 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_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_frequency.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_probability.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 +1 -1
- 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 +1 -1
- 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_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_classinherit.rb +1 -1
- data/test/lib/facets/more/test_classmethods.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_dictionary.rb +1 -1
- data/test/lib/facets/more/test_elementor.rb +1 -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_inheritor.rb +1 -1
- 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_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 +1 -1
- data/test/lib/facets/more/test_openobject.rb +1 -1
- 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_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 +19 -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
- data/web/doc/api/core/classes/Array.html +1356 -0
- data/web/doc/api/core/classes/Binding.html +538 -0
- data/web/doc/api/core/classes/Class.html +475 -0
- data/web/doc/api/core/classes/Comparable.html +231 -0
- data/web/doc/api/core/classes/Continuation.html +168 -0
- data/web/doc/api/core/classes/Date.html +219 -0
- data/web/doc/api/core/classes/Dir.html +208 -0
- data/web/doc/api/core/classes/Enumerable.html +1435 -0
- data/web/doc/api/core/classes/FalseClass.html +115 -0
- data/web/doc/api/core/classes/File.html +349 -0
- data/web/doc/api/core/classes/FileUtils.html +468 -0
- data/web/doc/api/core/classes/Float.html +157 -0
- data/web/doc/api/core/classes/Gem.html +171 -0
- data/web/doc/api/core/classes/Hash.html +1657 -0
- data/web/doc/api/core/classes/Integer.html +353 -0
- data/web/doc/api/core/classes/Kernal.html +86 -0
- data/web/doc/api/core/classes/Kernel.html +1972 -0
- data/web/doc/api/core/classes/Logger.html +157 -0
- data/web/doc/api/core/classes/MatchData.html +195 -0
- data/web/doc/api/core/classes/Module.html +1712 -0
- data/web/doc/api/core/classes/NackClass.html +92 -0
- data/web/doc/api/core/classes/NilClass.html +332 -0
- data/web/doc/api/core/classes/Numeric.html +306 -0
- data/web/doc/api/core/classes/Object.html +332 -0
- data/web/doc/api/core/classes/OpenStruct.html +315 -0
- data/web/doc/api/core/classes/Pathname.html +154 -0
- data/web/doc/api/core/classes/Proc.html +154 -0
- data/web/doc/api/core/classes/Range.html +235 -0
- data/web/doc/api/core/classes/Regexp.html +185 -0
- data/web/doc/api/core/classes/ScriptBug.html +92 -0
- data/web/doc/api/core/classes/String.html +3286 -0
- data/web/doc/api/core/classes/Symbol.html +463 -0
- data/web/doc/api/core/classes/Time.html +307 -0
- data/web/doc/api/core/classes/TrueClass.html +115 -0
- data/web/doc/api/core/classes/UnboundMethod.html +121 -0
- data/web/doc/api/core/created.rid +1 -0
- data/web/doc/api/core/files/AUTHORS.html +206 -0
- data/web/doc/api/core/files/COPYING.html +517 -0
- data/web/doc/api/core/files/README.html +386 -0
- data/web/doc/api/core/files/WARNING.html +151 -0
- data/web/doc/api/core/files/lib/facets/core/all_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/array/at_rand_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/body_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/array/delete_unless_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/delete_values_at_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/delete_values_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/each_with_key_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/first_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/array/foot_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/array/head_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/join_sentence_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/last_index_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/last_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/array/merge_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/mid_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/middle_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/op_fetch_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/op_mod_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/op_store_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/array/pick_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/pos_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/pot_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/pull_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/rand_index_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/rand_subset_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/range_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/rotate_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/select_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/shuffle_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/store_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/tail_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/array/thru_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/to_b_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/to_h_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/to_hash_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/array/unzip_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/binding/__DIR___rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/binding/__FILE___rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/binding/__LINE___rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/binding/call_stack_rb.html +97 -0
- data/web/doc/api/core/files/lib/facets/core/binding/called_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/binding/caller_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/binding/defined_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/binding/eval_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/binding/local_variables_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/binding/method_name_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/binding/op_fetch_rb.html +97 -0
- data/web/doc/api/core/files/lib/facets/core/binding/op_store_rb.html +97 -0
- data/web/doc/api/core/files/lib/facets/core/binding/self/of_caller_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/binding/self_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/binding_rb.html +109 -0
- data/web/doc/api/core/files/lib/facets/core/class/by_name_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/class/cattr_accessor_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/class/cattr_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/class/cattr_reader_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/class/cattr_writer_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/class/descendents_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/class/method_name_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/class/remove_descendents_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/class/remove_subclasses_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/class/subclasses_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/class/to_proc_rb.html +98 -0
- data/web/doc/api/core/files/lib/facets/core/class/unix_path_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/comparable/at_least_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/comparable/at_most_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/comparable/cap_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/comparable/clip_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/comparable/cmp_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/continuation/self/create_rb.html +148 -0
- data/web/doc/api/core/files/lib/facets/core/date/days_in_month_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/date/days_of_month_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/date/stamp_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/date/to_date_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/date/to_s_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/date/to_time_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/dir/self/ancestor_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/dir/self/ascend_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/dir/self/descend_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/dir/self/ls_r_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/dir/self/recurse_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/accumulate_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/collect_if_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/collect_with_counter_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/collect_with_index_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/commonality_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/compact_collect_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/compact_map_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/count_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/cross_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/each_by_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/each_combination_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/each_pair_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/each_permutation_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/each_slice_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/each_unique_pair_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/each_with_counter_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/elementwise_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/entropy_rb.html +97 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/every_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/ew_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/filter_collect_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/filter_map_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/find_collisions_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/frequency_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/graph_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/ideal_entropy_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/map_if_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/map_with_counter_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/map_with_index_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/mode_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/none_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/nonuniq_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/occur_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/one_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/op_pow_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/partition_by_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/permute_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/probability_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/project_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/self/combinations_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/self/cross_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/to_h_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/uniq_by_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/enumerable/where_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/file/self/append_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/file/self/create_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/file/self/open_as_string_rb.html +118 -0
- data/web/doc/api/core/files/lib/facets/core/file/self/read_binary_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/file/self/read_list_rb.html +97 -0
- data/web/doc/api/core/files/lib/facets/core/file/self/sanitize_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/file/self/split_all_rb.html +101 -0
- data/web/doc/api/core/files/lib/facets/core/file/self/write_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/fileutils/head_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/fileutils/safe_ln_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/fileutils/slice_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/fileutils/split_all_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/fileutils/tail_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/fileutils/wc_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/fileutils/whereis_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/fileutils/which_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/float/approx_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/float/round_at_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/float/round_off_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/float/round_to_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/gem/self/active_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/gem/self/gemdir_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/gem/self/gempath_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/gem/self/gemspec_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/hash/alias_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/assert_has_keys_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/hash/assert_has_only_keys_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/hash/at_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/collate_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/delete_unless_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/hash/each_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/each_with_index_rb.html +97 -0
- data/web/doc/api/core/files/lib/facets/core/hash/each_with_key_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/graph_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/hash/has_keys_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/has_only_keys_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/inverse_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/join_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/keys_to_iv_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/keys_to_s_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/keys_to_sym_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/op_fetch_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/hash/op_lshift_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/op_store_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/hash/rand_key_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/rand_pair_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/hash/rand_value_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/hash/replace_each_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/self/zipnew_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/shuffle_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/hash/slice_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/stringify_keys_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/hash/swap_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/swapkey_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/symoblize_keys_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/hash/to_h_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/to_ostruct_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/hash/to_ostruct_recurse_rb.html +97 -0
- data/web/doc/api/core/files/lib/facets/core/hash/to_proc_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/traverse_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/update_each_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/update_keys_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/update_values_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/hash/variablize_keys_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/hash/weave_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/inflect_rb.html +117 -0
- data/web/doc/api/core/files/lib/facets/core/integer/even_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/integer/fac_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/integer/fact_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/integer/factorial_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/integer/multiple_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/integer/odd_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/integer/ordinal_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/integer/times_collect_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/integer/times_map_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/__DIR___rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/__class___rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/__get___rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/__self___rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/__set___rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/adhoc_rb.html +99 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/as_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/assign_from_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/assign_with_rb.html +97 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/autoreload_files_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/autoreload_glob_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/autoreload_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/bool_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/bug_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/cache_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/call_stack_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/called_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/complete_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/constant_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/copy_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/deep_copy_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/demo_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/eigenclass_rb.html +103 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/false_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/fn_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/generate_method_name_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/get_by_id_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/here_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/in_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/instance_assign_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/instvar_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/is_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/maybe_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/me_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/metaclass_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/method_name_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/method_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/methodname_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/methods_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/nack_rb.html +98 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/new_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/object_class_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/object_hexid_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/op_esc_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/own_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/p_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/pp_exception_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/require_all_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/require_esc_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/require_facet_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/require_local_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/resc_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/respond_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/returning_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/send_as_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/set_from_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/set_with_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/silence_warnings_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/silently_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/singleton_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/superior_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/supermethod_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/this_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/to_b_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/to_bool_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/true_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/unuri_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/uri_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/val_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/warn_with_line_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/with_accessor_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/with_reader_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/kernel/with_writer_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/logger/format_message_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/logger/format_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/matchdata/match_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/matchdata/matchset_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/matchdata/matchtree_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/abstract_rb.html +105 -0
- data/web/doc/api/core/files/lib/facets/core/module/alias_module_function_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/ancestor_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/attr_query_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/module/attr_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/attr_setter_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/attr_tester_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/module/attr_validator_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/basename_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/by_name_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/module/class_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/clone_removing_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/module/clone_renaming_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/module/clone_using_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/dirname_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/equate_on_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/generate_instance_method_name_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/include_as_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/module/inherit_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/module/initializer_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/instance_methods_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/module/integrate_rb.html +104 -0
- data/web/doc/api/core/files/lib/facets/core/module/is_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/module/memoize_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/modspace_rb.html +97 -0
- data/web/doc/api/core/files/lib/facets/core/module/namespace_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/module/nesting_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/nodef_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/on_included_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/redef_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/module/redefine_method_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/redirect_method_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/redirect_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/module/remove_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/rename_method_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/rename_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/module/revisal_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/module/shadow_all_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/module/shadow_method_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/singleton_to_module_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/sort_on_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/this_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/module/wrap_method_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/module/wrap_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/nil_as_emptiness_rb.html +116 -0
- data/web/doc/api/core/files/lib/facets/core/nilclass/blank_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/nilclass/empty_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/nilclass/include_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/nilclass/length_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/nilclass/op_cmp_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/nilclass/op_fetch_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/nilclass/size_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/nilclass/succ_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/nilclass/to_h_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/numeric/approx_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/numeric/ceil_multiple_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/numeric/pred_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/numeric/succ_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/numeric/to_b_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/ostruct/__merge___rb.html +97 -0
- data/web/doc/api/core/files/lib/facets/core/ostruct/__table___rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/ostruct/__update___rb.html +98 -0
- data/web/doc/api/core/files/lib/facets/core/ostruct/instance_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/ostruct/op_fetch_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/ostruct/op_store_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/ostruct/to_h_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/ostruct_rb.html +102 -0
- data/web/doc/api/core/files/lib/facets/core/pathname/ascend_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/pathname/descend_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/proc/compose_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/proc/op_mul_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/proc/to_method_rb.html +133 -0
- data/web/doc/api/core/files/lib/facets/core/random_rb.html +111 -0
- data/web/doc/api/core/files/lib/facets/core/range/to_r_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/range/to_range_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/range/umbrella_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/range/within_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/regexp/arity_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/regexp/to_re_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/regexp/to_regexp_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/align_center_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/align_left_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/string/align_right_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/string/at_rand_rb.html +98 -0
- data/web/doc/api/core/files/lib/facets/core/string/at_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/basename_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/blank_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/bracket_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/brief_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/bytes_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/camelcase_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/camelize_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/capitalized_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/chars_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/cmp_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/demodulize_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/string/dequote_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/downcase_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/dresner_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/each_char_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/each_word_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/ends_with_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/string/first_char_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/string/first_rb.html +98 -0
- data/web/doc/api/core/files/lib/facets/core/string/fold_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/format_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/string/frequency_rb.html +97 -0
- data/web/doc/api/core/files/lib/facets/core/string/humanize_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/indent_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/index_all_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/last_char_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/string/last_rb.html +98 -0
- data/web/doc/api/core/files/lib/facets/core/string/line_wrap_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/lines_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/lowercase_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/string/margin_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/methodize_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/modulize_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/mscan_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/natcmp_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/nchar_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/ordinal_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/string/pathize_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/plural_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/string/pop_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/pot_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/probability_rb.html +97 -0
- data/web/doc/api/core/files/lib/facets/core/string/pull_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/push_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/quote_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/string/rand_byte_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/rand_index_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/range_all_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/string/range_of_line_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/range_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/regesc_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/self/format_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/self/interpolate_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/self/patterns_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/self/rand_letter_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/self/random_rb.html +99 -0
- data/web/doc/api/core/files/lib/facets/core/string/shatter_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/shell_escape_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/shift_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/shuffle_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/string/similarity_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/singular_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/soundex_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/starts_with_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/succ_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/tab_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/string/tabto_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/string/to_a_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/to_b_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/to_const_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/to_date_rb.html +97 -0
- data/web/doc/api/core/files/lib/facets/core/string/to_proc_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/to_re_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/to_rx_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/string/to_time_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/string/unbracket_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/string/underscore_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/unix_crypt_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/string/unpack_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/unshift_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/upcase_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/uppercase_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/string/whitespace_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/string/word_filter_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/word_wrap_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string/words_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/string_as_array_rb.html +109 -0
- data/web/doc/api/core/files/lib/facets/core/symbol/camelcase_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/symbol/camelize_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/symbol/capitalize_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/symbol/capitalized_rb.html +97 -0
- data/web/doc/api/core/files/lib/facets/core/symbol/downcase_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/symbol/not_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/symbol/pad_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/symbol/succ_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/symbol/to_const_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/symbol/to_proc_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/symbol/to_str_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/symbol/underscore_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/symbol/upcase_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/time/change_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/time/elapse_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/time/self/days_extrema_rb.html +114 -0
- data/web/doc/api/core/files/lib/facets/core/time/self/stamp_rb.html +100 -0
- data/web/doc/api/core/files/lib/facets/core/time/stamp_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/time/to_date_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/time/to_s_rb.html +96 -0
- data/web/doc/api/core/files/lib/facets/core/time/to_time_rb.html +92 -0
- data/web/doc/api/core/files/lib/facets/core/unboundmethod/name_rb.html +92 -0
- data/web/doc/api/core/fr_class_index.html +80 -0
- data/web/doc/api/core/fr_file_index.html +521 -0
- data/web/doc/api/core/fr_method_index.html +555 -0
- data/web/doc/api/core/index.html +26 -0
- data/web/doc/api/core/rdoc-style.css +175 -0
- data/web/doc/api/more/classes/Annotation.html +258 -0
- data/web/doc/api/more/classes/Array.html +362 -0
- data/web/doc/api/more/classes/Aspect.html +159 -0
- data/web/doc/api/more/classes/Aspects.html +240 -0
- data/web/doc/api/more/classes/Aspects/ClassMethods.html +254 -0
- data/web/doc/api/more/classes/Association.html +289 -0
- data/web/doc/api/more/classes/BBCode.html +531 -0
- data/web/doc/api/more/classes/BasicObject.html +260 -0
- data/web/doc/api/more/classes/BasicObject/Self.html +142 -0
- data/web/doc/api/more/classes/BinaryReader.html +535 -0
- data/web/doc/api/more/classes/BinaryReader/ByteOrder.html +225 -0
- data/web/doc/api/more/classes/BuilderObject.html +248 -0
- data/web/doc/api/more/classes/Class.html +201 -0
- data/web/doc/api/more/classes/Client.html +1251 -0
- data/web/doc/api/more/classes/Cloneable.html +133 -0
- data/web/doc/api/more/classes/Console.html +105 -0
- data/web/doc/api/more/classes/Console/ANSICode.html +488 -0
- data/web/doc/api/more/classes/Console/Command.html +275 -0
- data/web/doc/api/more/classes/Console/ProgressBar.html +640 -0
- data/web/doc/api/more/classes/Coroutine.html +284 -0
- data/web/doc/api/more/classes/Crypt.html +270 -0
- data/web/doc/api/more/classes/DebugSocket.html +242 -0
- data/web/doc/api/more/classes/Dictionary.html +974 -0
- data/web/doc/api/more/classes/Downloader.html +515 -0
- data/web/doc/api/more/classes/Downloader/Checksum.html +96 -0
- data/web/doc/api/more/classes/Downloader/Mirror.html +134 -0
- data/web/doc/api/more/classes/Elementor.html +202 -0
- data/web/doc/api/more/classes/Enumerable.html +86 -0
- data/web/doc/api/more/classes/EnumerablePass.html +217 -0
- data/web/doc/api/more/classes/Expirable.html +197 -0
- data/web/doc/api/more/classes/FalseClass.html +119 -0
- data/web/doc/api/more/classes/FileList.html +971 -0
- data/web/doc/api/more/classes/Float.html +140 -0
- data/web/doc/api/more/classes/FloatString.html +413 -0
- data/web/doc/api/more/classes/Functor.html +203 -0
- data/web/doc/api/more/classes/HTMLBuilder.html +132 -0
- data/web/doc/api/more/classes/HTMLHelper.html +189 -0
- data/web/doc/api/more/classes/HTTP.html +154 -0
- data/web/doc/api/more/classes/HTTP/BadResponseError.html +94 -0
- data/web/doc/api/more/classes/HTTP/Error.html +96 -0
- data/web/doc/api/more/classes/HTTP/Message.html +633 -0
- data/web/doc/api/more/classes/HTTP/Message/Body.html +299 -0
- data/web/doc/api/more/classes/HTTP/Message/Headers.html +641 -0
- data/web/doc/api/more/classes/HTTP/Status.html +148 -0
- data/web/doc/api/more/classes/HTTPAccess.html +115 -0
- data/web/doc/api/more/classes/Hash.html +257 -0
- data/web/doc/api/more/classes/HashBuilder.html +216 -0
- data/web/doc/api/more/classes/Heap.html +535 -0
- data/web/doc/api/more/classes/Heap/EmptyHeapException.html +92 -0
- data/web/doc/api/more/classes/Heap/Max.html +133 -0
- data/web/doc/api/more/classes/Heap/Min.html +133 -0
- data/web/doc/api/more/classes/IORedirect.html +225 -0
- data/web/doc/api/more/classes/Integer.html +298 -0
- data/web/doc/api/more/classes/Interval.html +853 -0
- data/web/doc/api/more/classes/InvalidNackError.html +117 -0
- data/web/doc/api/more/classes/JSON.html +410 -0
- data/web/doc/api/more/classes/JSON/Parser.html +374 -0
- data/web/doc/api/more/classes/JSON/State.html +280 -0
- data/web/doc/api/more/classes/Kernel.html +400 -0
- data/web/doc/api/more/classes/LRUCache.html +461 -0
- data/web/doc/api/more/classes/LRUCache/Item.html +114 -0
- data/web/doc/api/more/classes/LRUCache/Sentinel.html +102 -0
- data/web/doc/api/more/classes/Lazy.html +96 -0
- data/web/doc/api/more/classes/Lazy/Future.html +100 -0
- data/web/doc/api/more/classes/Lazy/Promise.html +114 -0
- data/web/doc/api/more/classes/Lazy/PromiseSafe.html +99 -0
- data/web/doc/api/more/classes/Lisp.html +846 -0
- data/web/doc/api/more/classes/Lisp/DottedPair.html +289 -0
- data/web/doc/api/more/classes/Lisp/Format.html +147 -0
- data/web/doc/api/more/classes/Math.html +110 -0
- data/web/doc/api/more/classes/Math/Constants.html +691 -0
- data/web/doc/api/more/classes/Math/Constants/CGS.html +584 -0
- data/web/doc/api/more/classes/Method.html +170 -0
- data/web/doc/api/more/classes/Method/Probe.html +267 -0
- data/web/doc/api/more/classes/Mock.html +276 -0
- data/web/doc/api/more/classes/Module.html +691 -0
- data/web/doc/api/more/classes/Multiton.html +256 -0
- data/web/doc/api/more/classes/NackClass.html +245 -0
- data/web/doc/api/more/classes/NilClass.html +238 -0
- data/web/doc/api/more/classes/NullClass.html +202 -0
- data/web/doc/api/more/classes/Numeric.html +1104 -0
- data/web/doc/api/more/classes/ORMSupport.html +357 -0
- data/web/doc/api/more/classes/Object.html +323 -0
- data/web/doc/api/more/classes/OpenCascade.html +230 -0
- data/web/doc/api/more/classes/OpenObject.html +552 -0
- data/web/doc/api/more/classes/PQueue.html +471 -0
- data/web/doc/api/more/classes/PathList.html +162 -0
- data/web/doc/api/more/classes/PathList/Finder.html +137 -0
- data/web/doc/api/more/classes/Pool.html +207 -0
- data/web/doc/api/more/classes/Proc.html +140 -0
- data/web/doc/api/more/classes/PromoteSelf.html +138 -0
- data/web/doc/api/more/classes/Quaternion.html +1497 -0
- data/web/doc/api/more/classes/REXMLBuilder.html +357 -0
- data/web/doc/api/more/classes/REXMLBuilder/REXMLUtil.html +396 -0
- data/web/doc/api/more/classes/Recorder.html +208 -0
- data/web/doc/api/more/classes/Reference.html +201 -0
- data/web/doc/api/more/classes/RubyOneLiners.html +139 -0
- data/web/doc/api/more/classes/RubyTals.html +316 -0
- data/web/doc/api/more/classes/SSLSocketWrap.html +410 -0
- data/web/doc/api/more/classes/Semaphore.html +264 -0
- data/web/doc/api/more/classes/SimpleStringIO.html +139 -0
- data/web/doc/api/more/classes/Snapshot.html +191 -0
- data/web/doc/api/more/classes/StateMachine.html +248 -0
- data/web/doc/api/more/classes/StateParser.html +276 -0
- data/web/doc/api/more/classes/StateParser/Constants.html +109 -0
- data/web/doc/api/more/classes/StateParser/Marker.html +269 -0
- data/web/doc/api/more/classes/StateParser/State.html +448 -0
- data/web/doc/api/more/classes/StaticHash.html +144 -0
- data/web/doc/api/more/classes/String.html +278 -0
- data/web/doc/api/more/classes/StringIO.html +123 -0
- data/web/doc/api/more/classes/Struct.html +134 -0
- data/web/doc/api/more/classes/Symbol.html +116 -0
- data/web/doc/api/more/classes/SyncArray.html +131 -0
- data/web/doc/api/more/classes/SyncHash.html +135 -0
- data/web/doc/api/more/classes/SyncHash/Delegator.html +213 -0
- data/web/doc/api/more/classes/SyncHash/Inheritor.html +213 -0
- data/web/doc/api/more/classes/System.html +1055 -0
- data/web/doc/api/more/classes/TSort.html +123 -0
- data/web/doc/api/more/classes/TagIterator.html +706 -0
- data/web/doc/api/more/classes/Task.html +237 -0
- data/web/doc/api/more/classes/Task/Graph.html +165 -0
- data/web/doc/api/more/classes/Taskable.html +300 -0
- data/web/doc/api/more/classes/Time.html +746 -0
- data/web/doc/api/more/classes/Timer.html +471 -0
- data/web/doc/api/more/classes/Timer/Dummy.html +141 -0
- data/web/doc/api/more/classes/TracePoint.html +453 -0
- data/web/doc/api/more/classes/TrueClass.html +118 -0
- data/web/doc/api/more/classes/Tuple.html +861 -0
- data/web/doc/api/more/classes/URI.html +107 -0
- data/web/doc/api/more/classes/Uninheritable.html +130 -0
- data/web/doc/api/more/classes/Units.html +191 -0
- data/web/doc/api/more/classes/Units/Config.html +120 -0
- data/web/doc/api/more/classes/Units/Converter.html +808 -0
- data/web/doc/api/more/classes/Units/Converter/ExchangeRate.html +155 -0
- data/web/doc/api/more/classes/Units/Converter/ExchangeRate/CachedXMethods.html +143 -0
- data/web/doc/api/more/classes/Units/Converter/ExchangeRate/XMethods.html +197 -0
- data/web/doc/api/more/classes/Units/Unit.html +434 -0
- data/web/doc/api/more/classes/Units/Value.html +331 -0
- data/web/doc/api/more/classes/ValueHolder.html +167 -0
- data/web/doc/api/more/classes/WebAgent.html +103 -0
- data/web/doc/api/more/classes/WebAgent/Cookie.html +513 -0
- data/web/doc/api/more/classes/WebAgent/CookieManager.html +515 -0
- data/web/doc/api/more/classes/WebAgent/CookieManager/Error.html +96 -0
- data/web/doc/api/more/classes/WebAgent/CookieManager/ErrorOverrideOK.html +94 -0
- data/web/doc/api/more/classes/WebAgent/CookieManager/NoDotError.html +94 -0
- data/web/doc/api/more/classes/WebAgent/CookieManager/SpecialError.html +94 -0
- data/web/doc/api/more/classes/WebAgent/CookieUtils.html +171 -0
- data/web/doc/api/more/classes/XMLBuilder.html +132 -0
- data/web/doc/api/more/classes/XMLHelper.html +428 -0
- data/web/doc/api/more/classes/XOXO.html +252 -0
- data/web/doc/api/more/classes/YAMLStruct.html +166 -0
- data/web/doc/api/more/created.rid +1 -0
- data/web/doc/api/more/files/AUTHORS.html +206 -0
- data/web/doc/api/more/files/COPYING.html +517 -0
- data/web/doc/api/more/files/README.html +389 -0
- data/web/doc/api/more/files/WARNING.html +151 -0
- data/web/doc/api/more/files/lib/facets/more/annattr_rb.html +115 -0
- data/web/doc/api/more/files/lib/facets/more/annotation_rb.html +118 -0
- data/web/doc/api/more/files/lib/facets/more/ansicode_rb.html +128 -0
- data/web/doc/api/more/files/lib/facets/more/aspects_rb.html +115 -0
- data/web/doc/api/more/files/lib/facets/more/association_rb.html +111 -0
- data/web/doc/api/more/files/lib/facets/more/basicobject_rb.html +129 -0
- data/web/doc/api/more/files/lib/facets/more/bbcode_rb.html +111 -0
- data/web/doc/api/more/files/lib/facets/more/binaryreader_rb.html +111 -0
- data/web/doc/api/more/files/lib/facets/more/bitmask_rb.html +111 -0
- data/web/doc/api/more/files/lib/facets/more/blankslate_rb.html +113 -0
- data/web/doc/api/more/files/lib/facets/more/builderobject_rb.html +115 -0
- data/web/doc/api/more/files/lib/facets/more/bytes_rb.html +131 -0
- data/web/doc/api/more/files/lib/facets/more/classinherit_rb.html +111 -0
- data/web/doc/api/more/files/lib/facets/more/classmethods_rb.html +121 -0
- data/web/doc/api/more/files/lib/facets/more/cloneable_rb.html +132 -0
- data/web/doc/api/more/files/lib/facets/more/consoleapp_rb.html +131 -0
- data/web/doc/api/more/files/lib/facets/more/cookie_rb.html +133 -0
- data/web/doc/api/more/files/lib/facets/more/coroutine_rb.html +111 -0
- data/web/doc/api/more/files/lib/facets/more/crypt_rb.html +146 -0
- data/web/doc/api/more/files/lib/facets/more/dictionary_rb.html +123 -0
- data/web/doc/api/more/files/lib/facets/more/downloader_rb.html +124 -0
- data/web/doc/api/more/files/lib/facets/more/elementor_rb.html +115 -0
- data/web/doc/api/more/files/lib/facets/more/enumerablepass_rb.html +115 -0
- data/web/doc/api/more/files/lib/facets/more/expirable_rb.html +111 -0
- data/web/doc/api/more/files/lib/facets/more/filelist_rb.html +128 -0
- data/web/doc/api/more/files/lib/facets/more/floatstring_rb.html +115 -0
- data/web/doc/api/more/files/lib/facets/more/functor_rb.html +115 -0
- data/web/doc/api/more/files/lib/facets/more/hashbuilder_rb.html +115 -0
- data/web/doc/api/more/files/lib/facets/more/heap_rb.html +131 -0
- data/web/doc/api/more/files/lib/facets/more/htmlbuilder_rb.html +116 -0
- data/web/doc/api/more/files/lib/facets/more/htmlhelper_rb.html +119 -0
- data/web/doc/api/more/files/lib/facets/more/http_rb.html +116 -0
- data/web/doc/api/more/files/lib/facets/more/httpaccess_rb.html +137 -0
- data/web/doc/api/more/files/lib/facets/more/inheritor_rb.html +115 -0
- data/web/doc/api/more/files/lib/facets/more/interval_rb.html +120 -0
- data/web/doc/api/more/files/lib/facets/more/ioredirect_rb.html +116 -0
- data/web/doc/api/more/files/lib/facets/more/json_rb.html +141 -0
- data/web/doc/api/more/files/lib/facets/more/lazy_rb.html +111 -0
- data/web/doc/api/more/files/lib/facets/more/lisp_format_rb.html +129 -0
- data/web/doc/api/more/files/lib/facets/more/lisp_rb.html +119 -0
- data/web/doc/api/more/files/lib/facets/more/lrucache_rb.html +111 -0
- data/web/doc/api/more/files/lib/facets/more/mathconstants_rb.html +121 -0
- data/web/doc/api/more/files/lib/facets/more/methodprobe_rb.html +111 -0
- data/web/doc/api/more/files/lib/facets/more/mock_rb.html +208 -0
- data/web/doc/api/more/files/lib/facets/more/multipliers_rb.html +115 -0
- data/web/doc/api/more/files/lib/facets/more/multiton_rb.html +114 -0
- data/web/doc/api/more/files/lib/facets/more/nackclass_rb.html +151 -0
- data/web/doc/api/more/files/lib/facets/more/nilcomparable_rb.html +118 -0
- data/web/doc/api/more/files/lib/facets/more/nullclass_rb.html +111 -0
- data/web/doc/api/more/files/lib/facets/more/one_rb.html +158 -0
- data/web/doc/api/more/files/lib/facets/more/opencascade_rb.html +129 -0
- data/web/doc/api/more/files/lib/facets/more/openobject_rb.html +120 -0
- data/web/doc/api/more/files/lib/facets/more/orderedhash_rb.html +113 -0
- data/web/doc/api/more/files/lib/facets/more/ormsupport_rb.html +125 -0
- data/web/doc/api/more/files/lib/facets/more/overload_rb.html +111 -0
- data/web/doc/api/more/files/lib/facets/more/paramix_rb.html +118 -0
- data/web/doc/api/more/files/lib/facets/more/pathlist_rb.html +111 -0
- data/web/doc/api/more/files/lib/facets/more/pool_rb.html +120 -0
- data/web/doc/api/more/files/lib/facets/more/pqueue_rb.html +122 -0
- data/web/doc/api/more/files/lib/facets/more/preinitialize_rb.html +115 -0
- data/web/doc/api/more/files/lib/facets/more/progressbar_rb.html +111 -0
- data/web/doc/api/more/files/lib/facets/more/promoteself_rb.html +111 -0
- data/web/doc/api/more/files/lib/facets/more/quaternion_rb.html +150 -0
- data/web/doc/api/more/files/lib/facets/more/recorder_rb.html +115 -0
- data/web/doc/api/more/files/lib/facets/more/reference_rb.html +115 -0
- data/web/doc/api/more/files/lib/facets/more/rexmlbuilder_rb.html +116 -0
- data/web/doc/api/more/files/lib/facets/more/rtals_rb.html +115 -0
- data/web/doc/api/more/files/lib/facets/more/semaphore_rb.html +111 -0
- data/web/doc/api/more/files/lib/facets/more/snapshot_rb.html +121 -0
- data/web/doc/api/more/files/lib/facets/more/stateparser_rb.html +115 -0
- data/web/doc/api/more/files/lib/facets/more/statichash_rb.html +133 -0
- data/web/doc/api/more/files/lib/facets/more/syncarray_rb.html +115 -0
- data/web/doc/api/more/files/lib/facets/more/synchash_rb.html +115 -0
- data/web/doc/api/more/files/lib/facets/more/system_rb.html +123 -0
- data/web/doc/api/more/files/lib/facets/more/tagiterator_rb.html +111 -0
- data/web/doc/api/more/files/lib/facets/more/taskable_rb.html +118 -0
- data/web/doc/api/more/files/lib/facets/more/timer_rb.html +127 -0
- data/web/doc/api/more/files/lib/facets/more/times_rb.html +127 -0
- data/web/doc/api/more/files/lib/facets/more/tracepoint_rb.html +131 -0
- data/web/doc/api/more/files/lib/facets/more/tuple_rb.html +122 -0
- data/web/doc/api/more/files/lib/facets/more/typecast_rb.html +124 -0
- data/web/doc/api/more/files/lib/facets/more/uninheritable_rb.html +111 -0
- data/web/doc/api/more/files/lib/facets/more/units_rb.html +118 -0
- data/web/doc/api/more/files/lib/facets/more/xmlbuilder_rb.html +116 -0
- data/web/doc/api/more/files/lib/facets/more/xmlhelper_rb.html +111 -0
- data/web/doc/api/more/files/lib/facets/more/xoxo_rb.html +125 -0
- data/web/doc/api/more/files/lib/facets/more/yamlstruct_rb.html +123 -0
- data/web/doc/api/more/fr_class_index.html +197 -0
- data/web/doc/api/more/fr_file_index.html +136 -0
- data/web/doc/api/more/fr_method_index.html +1290 -0
- data/web/doc/api/more/index.html +26 -0
- data/web/doc/api/more/rdoc-style.css +175 -0
- data/web/documentation.html +174 -0
- data/web/favicon.ico +0 -0
- data/web/images/abc.png +0 -0
- data/web/images/abc1.png +0 -0
- data/web/images/apple_core.jpg +0 -0
- data/web/images/apples3.jpg +0 -0
- data/web/images/best_jupiter_cass.jpg +0 -0
- data/web/images/core.jpg +0 -0
- data/web/images/gray.jpg +0 -0
- data/web/images/ruby-lg.png +0 -0
- data/web/images/ruby.gif +0 -0
- data/web/images/super-friends-volume-two-20050606010933166-001.jpg +0 -0
- data/web/images/three_apples.jpg +0 -0
- data/web/images/yellow_fade.jpg +0 -0
- data/web/images/yellow_fade2.jpg +0 -0
- data/web/index.html +224 -0
- data/web/style.css +153 -0
- metadata +1433 -457
data/note/IMPORTANT
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
Facets is a GENERAL PURPOSE library. It is vital that is stay that way!
|
|
2
|
+
|
|
3
|
+
Under no circumstances should something be added to Facets specific to
|
|
4
|
+
a particular use case or application. While a lib might serve the needs
|
|
5
|
+
of such, the lib itself must have general applicability. Although not a
|
|
6
|
+
sure test in either "direction", a good rule of thumb for such a
|
|
7
|
+
condition is whether a lib has an external dependency --it should not.
|
|
8
|
+
|
data/note/Rakefile.old
ADDED
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
|
|
3
|
+
#require 'uri'
|
|
4
|
+
require 'yaml'
|
|
5
|
+
require 'fileutils'
|
|
6
|
+
require './lib/facets/core/file/self/read_list'
|
|
7
|
+
|
|
8
|
+
require 'reap/rake'
|
|
9
|
+
|
|
10
|
+
DATPATH = "data/facets"
|
|
11
|
+
ETCPATH = "conf/facets"
|
|
12
|
+
REQPATH = "facets/core"
|
|
13
|
+
MTHPATH = "lib/facets/core"
|
|
14
|
+
GENPATH = "lib/facets/core"
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
task :default => [ :tasks ]
|
|
18
|
+
|
|
19
|
+
task :tasks do
|
|
20
|
+
Rake.application.options.show_task_pattern = //
|
|
21
|
+
Rake.application.display_tasks_and_comments
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
#-----------------------------------------------------
|
|
25
|
+
# Generate facet/
|
|
26
|
+
#-----------------------------------------------------
|
|
27
|
+
desc %{Build facet redirect directory}
|
|
28
|
+
task :redirect do
|
|
29
|
+
sh %{rm -R 'lib/facet'} if File.directory?('lib/facet')
|
|
30
|
+
print "Creating redirection facet/ files..."
|
|
31
|
+
['core','more'].each{ |d|
|
|
32
|
+
from = "lib/facets"
|
|
33
|
+
rbs = Dir.glob( File.join( from, d, '**/*.rb' ) )
|
|
34
|
+
rbs.each { |e|
|
|
35
|
+
nolib = e.gsub( /^lib\//, '' )
|
|
36
|
+
re = Regexp.new( Regexp.escape( File.join( from, d ) + '/' ) )
|
|
37
|
+
link = e.gsub( re, 'lib/facet/')
|
|
38
|
+
FileUtils.mkdir_p( File.dirname( link ) )
|
|
39
|
+
File.open( link, "w+" ) { |w|
|
|
40
|
+
w << "require '#{nolib}'"
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
puts "[done]"
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
#-----------------------------------------------------
|
|
48
|
+
# Read in the facets directory and sort-out per class
|
|
49
|
+
#-----------------------------------------------------
|
|
50
|
+
Methods = {}
|
|
51
|
+
task :methods do
|
|
52
|
+
Dir.chdir(MTHPATH) do
|
|
53
|
+
dg = Dir.glob('*/**/*.rb')
|
|
54
|
+
dg.each { |f|
|
|
55
|
+
klass, *meth= f.split('/')
|
|
56
|
+
Methods[ klass ] ||= []
|
|
57
|
+
Methods[ klass ] << "#{meth.join('/').chomp('.rb')}"
|
|
58
|
+
}
|
|
59
|
+
Methods.keys.each { |k| Methods[k].sort! }
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
#-----------------------------------------------------
|
|
64
|
+
# Save method index to file in yaml format
|
|
65
|
+
#-----------------------------------------------------
|
|
66
|
+
desc %{Generate method index file}
|
|
67
|
+
task :index => [ :methods ] do
|
|
68
|
+
print "Creating method index... "
|
|
69
|
+
loc = File.join( DATPATH, 'index.yml' )
|
|
70
|
+
File.open( loc, 'w' ) { |f|
|
|
71
|
+
f << Methods.to_yaml
|
|
72
|
+
}
|
|
73
|
+
puts "[done]"
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
#-----------------------------------------------------
|
|
77
|
+
# Create per class feature files
|
|
78
|
+
#-----------------------------------------------------
|
|
79
|
+
desc %Q{Generate per-class feature files}
|
|
80
|
+
task :class => [:methods ] do
|
|
81
|
+
print "Creating per class files... "
|
|
82
|
+
|
|
83
|
+
index = Methods
|
|
84
|
+
noauto = File.read_list( File.join( ETCPATH, 'noauto' ) )
|
|
85
|
+
allfiles = index.collect{ |k,ms| ms.collect{ |m| "#{k}/#{m}" } }.flatten
|
|
86
|
+
full = calc_full(allfiles, noauto)
|
|
87
|
+
|
|
88
|
+
index.each { |classname, method_files|
|
|
89
|
+
File.open( "#{GENPATH}/#{classname.downcase}.rb", 'w' ) { |f|
|
|
90
|
+
method_files.each { |rf|
|
|
91
|
+
mfn = "#{classname.downcase}/#{rf}"
|
|
92
|
+
if full.include?(mfn)
|
|
93
|
+
f << %Q{require '#{REQPATH}/#{mfn}'\n}
|
|
94
|
+
end
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
}
|
|
98
|
+
puts "[done]"
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
#-----------------------------------------------------
|
|
102
|
+
# Do all prep tasks (do this to generate data index
|
|
103
|
+
# file and method group files)
|
|
104
|
+
#-----------------------------------------------------
|
|
105
|
+
desc %{Do all preperation (index, class)}
|
|
106
|
+
task :prep => [ :index, :class, :redirect ] do
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
#-----------------------------------------------------
|
|
110
|
+
# List Methods
|
|
111
|
+
#-----------------------------------------------------
|
|
112
|
+
desc %{Output a list of all methods}
|
|
113
|
+
task 'list' => [ :methods ] do
|
|
114
|
+
puts method_list_outline
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
# #-----------------------------------------------------
|
|
118
|
+
# # HTML List MethodsFile.new(
|
|
119
|
+
# #-----------------------------------------------------
|
|
120
|
+
#
|
|
121
|
+
# HEAD = <<-HERE
|
|
122
|
+
# <html>
|
|
123
|
+
# <head>
|
|
124
|
+
# <style>
|
|
125
|
+
# pre#methods {
|
|
126
|
+
# font-size: .8em;
|
|
127
|
+
# line-height: 1em;
|
|
128
|
+
# }
|
|
129
|
+
# </style>
|
|
130
|
+
# </head>
|
|
131
|
+
# <body>
|
|
132
|
+
# <pre id="methods">
|
|
133
|
+
# HERE
|
|
134
|
+
#
|
|
135
|
+
# FOOT=<<-HERE
|
|
136
|
+
# </pre>
|
|
137
|
+
# </body>
|
|
138
|
+
# </html>
|
|
139
|
+
# HERE
|
|
140
|
+
#
|
|
141
|
+
# desc %{generate method list html file}
|
|
142
|
+
# task 'listHtml' => [ :scrape_methods ] do
|
|
143
|
+
# s = HEAD + method_list_outline + FOOT
|
|
144
|
+
# File.open('pub/www/methods.html', 'w') { |f| f << s }
|
|
145
|
+
# end
|
|
146
|
+
|
|
147
|
+
#desc "Check for open comment tests"
|
|
148
|
+
#task :testchk do
|
|
149
|
+
# system %q{grep -r ^#=begin\ test ./lib}
|
|
150
|
+
#end
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
#-----------------------------------------------------
|
|
154
|
+
# Supporting Methods
|
|
155
|
+
#-----------------------------------------------------
|
|
156
|
+
|
|
157
|
+
private
|
|
158
|
+
|
|
159
|
+
def method_list_outline
|
|
160
|
+
s = ''
|
|
161
|
+
Methods.keys.sort.each { |k|
|
|
162
|
+
ms = Methods[k].collect{|m| m.gsub(%r{^self\/},'::')}.sort
|
|
163
|
+
s << "#{k}:\n"
|
|
164
|
+
ms.each { |m| s << " #{m}\n" }
|
|
165
|
+
}
|
|
166
|
+
s
|
|
167
|
+
end
|
|
168
|
+
|
|
169
|
+
# Full set of require files (allfiles minus noauto and unsafe)
|
|
170
|
+
def calc_full( allfiles, noauto )
|
|
171
|
+
sf = allfiles.dup
|
|
172
|
+
noauto.each do |f|
|
|
173
|
+
if f.include?('*')
|
|
174
|
+
re = %r"#{f.gsub('*','.*')}"
|
|
175
|
+
sf.reject!{ |x| x =~ re }
|
|
176
|
+
elsif sf.include?(f)
|
|
177
|
+
sf.delete f
|
|
178
|
+
end
|
|
179
|
+
end
|
|
180
|
+
sf.sort
|
|
181
|
+
end
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
Happy Winter Solstice,
|
|
2
|
+
|
|
3
|
+
I am pleased to finally announce the first public release of Ruby
|
|
4
|
+
Facets. Ruby Facets was born, as I imagine many such projects
|
|
5
|
+
are, over a period of years, as a growing collection of routines
|
|
6
|
+
for which I commonly found need. Recently the library had
|
|
7
|
+
grown large enough that I thought it might stand on its own.
|
|
8
|
+
So a few weeks ago, I decided I'd go ahead and prepare a
|
|
9
|
+
release. There was a good bit of work to do --organizing,
|
|
10
|
+
documenting, testing; and I had the "bright" idea of scouring
|
|
11
|
+
the web for other tidbits that I might add. That turned into a
|
|
12
|
+
whole project in itself! But I persevered and now Facets is
|
|
13
|
+
finally polished enough for an initial offering.
|
|
14
|
+
|
|
15
|
+
Of course, there are still plenty of things left to do: write better
|
|
16
|
+
documentation, improve the tests and write a few yet missing,
|
|
17
|
+
improve the methods themselves, perhaps even a few improvements
|
|
18
|
+
in method and file names, plus error catching code --I'm sure there
|
|
19
|
+
are a number of places for that improvement, and of course there's
|
|
20
|
+
plenty of room for adding new goodies, too. In fact I hope the
|
|
21
|
+
Ruby community at large will take this opportunity to contribute any
|
|
22
|
+
extension methods used personally but deemed generally useful.
|
|
23
|
+
As the project manager I am quite open to the many possibilities.
|
|
24
|
+
Please contribute!
|
|
25
|
+
|
|
26
|
+
Being the very first release, I expect there may arise some
|
|
27
|
+
unforeseen bugs. If you come across any please let me know,
|
|
28
|
+
as soon as possible, so I can fix. You can contact me either
|
|
29
|
+
privately or via ruby-talk, or through the new calibre-cuts
|
|
30
|
+
mailing-list:
|
|
31
|
+
|
|
32
|
+
http://rubyforge.org/mailman/listinfo/calibre-cuts
|
|
33
|
+
|
|
34
|
+
My hope for Ruby Facets, and the other children of its parent
|
|
35
|
+
project, Ruby Calibre, is that Ruby will gain a vast and widely
|
|
36
|
+
used set of useful classes and routines in a nice all-in-one package
|
|
37
|
+
--Ruby's Tertiary library after Core and Standard, if you will.
|
|
38
|
+
|
|
39
|
+
Thanks and Happy Holidays,
|
|
40
|
+
T.
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Happy New Year,
|
|
2
|
+
|
|
3
|
+
A new version of Ruby Facets is out: 0.6.1. This version updates the common
|
|
4
|
+
"mix" files to be insync with the previous 0.6 updates (they were lagging
|
|
5
|
+
behind at version 0.5). Not to be confused with a _mixin_, a mix simply
|
|
6
|
+
bundles a group of atomic requires into single file. The most common are
|
|
7
|
+
for the class and modules themselves. For example:
|
|
8
|
+
|
|
9
|
+
require 'facet/string'
|
|
10
|
+
|
|
11
|
+
This mix requires all String facets considerd most commonly useful.
|
|
12
|
+
|
|
13
|
+
Also added are a few new extra mixes: 'facet/rand' and 'facet/nil-as-emptiness'.
|
|
14
|
+
'rand' requires an assortment of random related methods. 'nil-as-emptiness'
|
|
15
|
+
makes NilClass return nil to a number of common methods, like #empty?
|
|
16
|
+
and #[].
|
|
17
|
+
|
|
18
|
+
If you are interested in contributing to a project but have little time
|
|
19
|
+
to spare, helping with Facets may be a perfect project. There are still
|
|
20
|
+
plenty of light-weight tasks to do: improve documentation, improve the
|
|
21
|
+
tests and write a few yet missing, improve the rohbustness of methods
|
|
22
|
+
themselves, including exceptional error catching, and of course there's
|
|
23
|
+
plenty of room for adding new goodies, too. If you have any extension
|
|
24
|
+
methods that you use and think may be of benefit to others, please let
|
|
25
|
+
us know. We are quite open to the many possibilities.
|
|
26
|
+
|
|
27
|
+
And, of course, please let us know if you come across any bugs.
|
|
28
|
+
|
|
29
|
+
You can contact us either privately or via ruby-talk, or through the
|
|
30
|
+
new calibre-cuts mailing-list:
|
|
31
|
+
|
|
32
|
+
http://rubyforge.org/mailman/listinfo/calibre-cuts
|
|
33
|
+
|
|
34
|
+
Thanks,
|
|
35
|
+
T.
|
|
36
|
+
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
Hi--
|
|
2
|
+
|
|
3
|
+
Ruby Facets 0.6.3 is now out. This version adds some new methods (as
|
|
4
|
+
usual). But the biggest news is that Facets is now avaialble via
|
|
5
|
+
RubyGems. To install simply run 'gem install facets'.
|
|
6
|
+
|
|
7
|
+
Here's a rundown of the ChangeLog for 0.6.3:
|
|
8
|
+
|
|
9
|
+
* Added kernel/require_all which allows one to require a pattern of files,
|
|
10
|
+
making it easy to require every file in a directory.
|
|
11
|
+
|
|
12
|
+
* Added hash/traverse and hash/traverse!, which takes a block and iterates over
|
|
13
|
+
each key-value pair descending into subhash values and applying the block.
|
|
14
|
+
Thanks goes to Ara T. Howard and robert for their help.
|
|
15
|
+
|
|
16
|
+
* Changed enumerable/build_hash to enumerable/graph. The method #build_hash
|
|
17
|
+
has been aliased to #graph for the time being for backward compatability.
|
|
18
|
+
|
|
19
|
+
* Added hash/collect. This uses enumerable/graph so that
|
|
20
|
+
hash/collect will return a hash rather then an array.
|
|
21
|
+
|
|
22
|
+
* Added numeric/before and numeric/after in place of #ago and #since
|
|
23
|
+
and aliased #ago and #since to them, per the suggestions of
|
|
24
|
+
Francis Hwang.
|
|
25
|
+
|
|
26
|
+
* Added "poor man's profiler", time/elapse. Credit goes to Hal Fulton.
|
|
27
|
+
|
|
28
|
+
* Added array/last_index. Thanks goes to Jabari.
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
If you have any extension methods that you use and think may be of benefit
|
|
32
|
+
to others, please submit them. And, of course, please let me know if you
|
|
33
|
+
come across any bugs.
|
|
34
|
+
|
|
35
|
+
You can contact me either privately or via ruby-talk,
|
|
36
|
+
or via the Ruby Muse mailing list, suby-ruby at berlios.de
|
|
37
|
+
(membership required).
|
|
38
|
+
|
|
39
|
+
http://rubyforge.org/mailman/listinfo/calibre-cuts
|
|
40
|
+
|
|
41
|
+
Thanks,
|
|
42
|
+
T.
|
|
43
|
+
|
|
@@ -0,0 +1,59 @@
|
|
|
1
|
+
Hi--
|
|
2
|
+
|
|
3
|
+
Exciting news! Ruby Facets 0.7 series is officially out. And this version goes ballistic.
|
|
4
|
+
Why? Well, what used to be the Carats library has now been merged into Facets! So not only
|
|
5
|
+
does Facets have the atomic methods, it now has a plethora of classes, modules and mixins
|
|
6
|
+
to draw upon.
|
|
7
|
+
|
|
8
|
+
Here's a list of the general changes for the current version 0.7.2:
|
|
9
|
+
|
|
10
|
+
* The Carats library has been ported into the Facet lib. These files sit in the
|
|
11
|
+
main lib directory 'facet/' above the "atomic" methods which are all in
|
|
12
|
+
subdirectories 'facet/{module|class}/'. This layout works well, and allows for
|
|
13
|
+
everything to be provided from the same location.
|
|
14
|
+
|
|
15
|
+
* All methods with names containing non-alphanumeric characters are now CGI-escaped.
|
|
16
|
+
This removes some incompatibilites with some file systems. For instance Object#in?
|
|
17
|
+
is now stored in object/in%3F.rb.
|
|
18
|
+
|
|
19
|
+
* So one doesn't have to fuss with these escape chars, a new method has been added,
|
|
20
|
+
kernel/require_facet, which automatically does the substitutions.
|
|
21
|
+
|
|
22
|
+
* An expiremental file, facet.rb, had been added that allows automatic requiring of
|
|
23
|
+
atomic methods. It uses object/method_missing to require the methods on demand.
|
|
24
|
+
|
|
25
|
+
* A number of "molecular" files have been added. These require multiple
|
|
26
|
+
related "atoms" at once for greater convenience.
|
|
27
|
+
|
|
28
|
+
* A few methods that were grouped together in the same file have been separated
|
|
29
|
+
into their own files. (This is more feasible thanks to the additional
|
|
30
|
+
"require collections.")
|
|
31
|
+
|
|
32
|
+
* The method array/put has been changed to array/top (it is an alias for #unshift).
|
|
33
|
+
|
|
34
|
+
* Methods #matchdata/post_match_from and #matchdata/pre_match_from have been
|
|
35
|
+
deprecated in favor of some more generalized methods that serves the same
|
|
36
|
+
purposes, matchdata/matchtree and matchdata/matchset.
|
|
37
|
+
|
|
38
|
+
* Added module/include_as which allows one to include a module but within a specified
|
|
39
|
+
namespace.
|
|
40
|
+
|
|
41
|
+
* Added array/each_permutation, which applys a block to each permutation (in contrast
|
|
42
|
+
to each_combination).
|
|
43
|
+
|
|
44
|
+
As for the rest. Well, this thing is HUGE! There's no way I can go into it all of it here.
|
|
45
|
+
So dig in and check it out. Documentation is a bit improved, too btw, albeit there's still
|
|
46
|
+
plenty of work to be done in this regard.
|
|
47
|
+
|
|
48
|
+
If you have any extension methods that you use and think may be of benefit
|
|
49
|
+
to others, please submit them. And, of course, please let me know if you
|
|
50
|
+
come across any bugs.
|
|
51
|
+
|
|
52
|
+
You can contact me either privately or via ruby-talk,
|
|
53
|
+
or via the Ruby Muse mailing list, suby-ruby at berlios.de
|
|
54
|
+
(membership required).
|
|
55
|
+
|
|
56
|
+
http://rubyforge.org/mailman/listinfo/calibre-cuts
|
|
57
|
+
|
|
58
|
+
Thanks,
|
|
59
|
+
T.
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
|
|
2
|
+
DRUM ROLL PLEASE. I'm happy to announce two new sister projects:
|
|
3
|
+
Nano Methods and Mega Modules. They are born from the heritage of the
|
|
4
|
+
old Ruby Facets project (now deprecated). In the course of the last
|
|
5
|
+
several months a slew of major improvements have been made. We have some
|
|
6
|
+
spiffy new websites and, most importantly, this release marks the
|
|
7
|
+
beginning of a clear window toward 1.0 status.
|
|
8
|
+
|
|
9
|
+
GREAT NEWS! Nano Methods and Mega Modules are now the official
|
|
10
|
+
support libraries for Nitro and Og (http://www.nitrohq.com).
|
|
11
|
+
Nitro is a sophisticated Web Application Engine and Og is an
|
|
12
|
+
intuitive yet powerful Object Relational Mapping Library.
|
|
13
|
+
|
|
14
|
+
WHY MEGA? You may have noticed that I back peddled on the major change to
|
|
15
|
+
Facets 0.7.0. In that release I had merged the class and module additions
|
|
16
|
+
library, Ruby Carats, into Facets. But I had to separate them out again. It
|
|
17
|
+
simply proved too cumbersome to have such a variety of content all in one
|
|
18
|
+
location. I am very excited the re-separation though. It has already lent
|
|
19
|
+
itself to major improvements to the library, with a number of exciting
|
|
20
|
+
additions on the way.
|
|
21
|
+
|
|
22
|
+
NANO SYSTEM. Another new feature is the introduction of the NanoSystem
|
|
23
|
+
module. This module provides access to meta-info about Nano's extensions.
|
|
24
|
+
Primarily it is an index of all the methods. With this information at its
|
|
25
|
+
disposal another unique way to require method becomes possible:
|
|
26
|
+
|
|
27
|
+
require 'nanosys'
|
|
28
|
+
|
|
29
|
+
String.use :capitalized?, :underscore
|
|
30
|
+
|
|
31
|
+
I am not recommending this approach at the moment. But in the long run,
|
|
32
|
+
as the NanoSystem module matures, it may well prove to be a much more
|
|
33
|
+
elegant means of extension loading.
|
|
34
|
+
|
|
35
|
+
FOR FACETS USERS. To upgrade, the project name change will require
|
|
36
|
+
you to change the #require path-space from 'facet/' to 'nano/', or
|
|
37
|
+
occasionally 'mega/'. The division is pretty clear, Nano stores methods
|
|
38
|
+
and Mega stores classes and modules. Sorry for the inconvenience, but
|
|
39
|
+
after a long debate I decided it was worth it --and better to do so now
|
|
40
|
+
rather then later. Hope you like the new names.
|
|
41
|
+
|
|
42
|
+
CORNUCOPIA. Finally, there are also _a lot_ of minor changes in this release.
|
|
43
|
+
Some of them are simply improvements in the naming of methods or more appropriate
|
|
44
|
+
class/module placement. I've gone over all the methods enough now to be
|
|
45
|
+
confident that the present methods are pretty well set. You can expect many fewer
|
|
46
|
+
name/location changes from here on out. Also, a good number of new methods have
|
|
47
|
+
been added. Most of these I have managed to make mention of in the following
|
|
48
|
+
ChangeLog summary.
|
|
49
|
+
|
|
50
|
+
* Class methods are not prefixed with '::' to separate them from instance methods.
|
|
51
|
+
|
|
52
|
+
* Added logger #format and #format_message (whomever wrote these please let me know,
|
|
53
|
+
I got them thru a second-hand source and the original author is lost to me. I try
|
|
54
|
+
very hard to credit where credit is due.)
|
|
55
|
+
|
|
56
|
+
* Renamed object/supers to object/superup. Better!
|
|
57
|
+
|
|
58
|
+
* Got rid of symbol/gen. Use object/generate_method_name or
|
|
59
|
+
module#generate_instance_method_name instead. [ed- Is that the longest
|
|
60
|
+
non-foo method name ever?]
|
|
61
|
+
|
|
62
|
+
* The file 1st.rb file has moved to object/method!. This provides a version
|
|
63
|
+
of #method that persists the returned Method object.
|
|
64
|
+
|
|
65
|
+
* Added module/clone_using, module/clone_renaming and module/clone_removing.
|
|
66
|
+
|
|
67
|
+
* Added module/integrate (I love this one, but note that its syntax is not yet
|
|
68
|
+
set in stone.)
|
|
69
|
+
|
|
70
|
+
* Added many new enumerable methods: #filter_map, #compact_map, #commonality,
|
|
71
|
+
#frequency, #probability and #find_collisions.
|
|
72
|
+
|
|
73
|
+
* Moved some methods from array to enumerable: #each_permutation,
|
|
74
|
+
#each_combination, #each_unique_pair and the class method ::combinations.
|
|
75
|
+
|
|
76
|
+
* Added string/bytes per ruby-dev summary 26385-26467.
|
|
77
|
+
|
|
78
|
+
* Moved #cattr_reader, #cattr_writer and #cattr_accessor from Class to Module.
|
|
79
|
+
These are the class variable attributes as defined by Rails DHH.
|
|
80
|
+
|
|
81
|
+
* Added class instance attribute methods: iattr_reader, iatter_writer, &c.
|
|
82
|
+
The name of these are not set in stone. It's a bad misnomer. Looking
|
|
83
|
+
for suggestions.
|
|
84
|
+
|
|
85
|
+
* Added methods to comparable: #cap, #clip. #clip replaces #bound_by, since
|
|
86
|
+
'by' generally indicates the method takes a block parameter. I have retained
|
|
87
|
+
#at_least and #at_most, although #cap and #clip handle the same functionality.
|
|
88
|
+
|
|
89
|
+
* Added class/descendants (alias subclasses) and class/remove_descendants.
|
|
90
|
+
|
|
91
|
+
* Removed string/table_name and string/class_name (were too Rails specific).
|
|
92
|
+
Note: A new module has been added to Mega Modules, called orm_inflect.rb.
|
|
93
|
+
It contains numerous methods for doing this sort of thing.
|
|
94
|
+
|
|
95
|
+
* Added numeric/ceil_multiple.
|
|
96
|
+
|
|
97
|
+
* Added string/soundex for calculating the soundex code of a word/name.
|
|
98
|
+
|
|
99
|
+
* numeric/octet_units has bee moved to mega/binary_multipliers, which
|
|
100
|
+
is a rewrite of Richard Kilmer's bytes.rb. Actually #octet_units is
|
|
101
|
+
now just an alias or #strfbytes, accompanied by #strfbits.
|
|
102
|
+
|
|
103
|
+
* Placed Florian's binding-of-caller.rb in binding/of_caller. Makes more
|
|
104
|
+
sense there.
|
|
105
|
+
|
|
106
|
+
* Fixed Continuation::create; it wasn't defined as a class method
|
|
107
|
+
and should have been.
|
|
108
|
+
|
|
109
|
+
* Fixed bug with string/capitalized? which wasn't always giving the correct
|
|
110
|
+
result.
|
|
111
|
+
|
|
112
|
+
There are a number of others, but this particular session of development was
|
|
113
|
+
so rapid and choked full, I wasn't able to log them all.
|
|
114
|
+
Please see the API RDocs for a complete listing.
|
|
115
|
+
|
|
116
|
+
CONTRIBUTE. As always, if you have any extension methods that you use and think
|
|
117
|
+
may be of benefit to others, please submit them. There's a good chance they'll be
|
|
118
|
+
incorporated. Also, if you happen to notice any code that is mis-credited or is
|
|
119
|
+
not credited at all and should be, please correct me. Giving credit where credit
|
|
120
|
+
is due is _vry_ important to me, unfortuantely in the juggle of things it doesn't
|
|
121
|
+
always get doen as wellas it should. And, of course, please let me know if you
|
|
122
|
+
come across any bugs.
|
|
123
|
+
|
|
124
|
+
You can contact me either privately or via ruby-talk.
|
|
125
|
+
|
|
126
|
+
Thanks and Enjoy,
|
|
127
|
+
trans|onoma
|