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/history/INTRO
ADDED
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
|
|
2
|
+
= Ruby Calibre, Common Applications Library Suite
|
|
3
|
+
|
|
4
|
+
"ALL BASE COMMON"
|
|
5
|
+
|
|
6
|
+
== Introduction
|
|
7
|
+
|
|
8
|
+
Welcome to the Ruby Calibre Project[1].
|
|
9
|
+
|
|
10
|
+
Calibre is an open API repository project for the Ruby programming language.
|
|
11
|
+
The intent of the project is to provide extensive general purposed library
|
|
12
|
+
collections to supplement the core and standard libraries already
|
|
13
|
+
included with Ruby. Specifically, it is an free and open repository of
|
|
14
|
+
useful and well tested classes, modules, mixins and methods.
|
|
15
|
+
|
|
16
|
+
Calibre has a simple slogan, "ALL BASE COMMON". The notion is that small
|
|
17
|
+
commonly used tools are better served whole. There are a number of
|
|
18
|
+
advantages in bundling these into a single suite.
|
|
19
|
+
|
|
20
|
+
* Better code reuse
|
|
21
|
+
* Collabretive improvements
|
|
22
|
+
* Name consistency
|
|
23
|
+
* One-stop shop and installation
|
|
24
|
+
|
|
25
|
+
The name Calibre is derived from the term used in gemstones:
|
|
26
|
+
|
|
27
|
+
"Calibre-cut stones are small stones that are cut into special shapes
|
|
28
|
+
that are meant for use in commonly-used designs."
|
|
29
|
+
|
|
30
|
+
So you see, the gemstone analogy is perfect. :)
|
|
31
|
+
|
|
32
|
+
The project is presently divided into two parts.
|
|
33
|
+
|
|
34
|
+
The first and most fundemental of these is Ruby Facets, the Fantasic Atomic
|
|
35
|
+
Core Extensions. The uniquness of this library collection lies in the
|
|
36
|
+
atomicity of its extensions layout (hence the name) --nearly every core
|
|
37
|
+
extension method is in it's own file, so it can be required independently.
|
|
38
|
+
|
|
39
|
+
The second is Cuts&Carats, a Collection of API Useful Tools. This is a higher-level
|
|
40
|
+
general purpose library which includes classes, modules, mixins, and other
|
|
41
|
+
assorted general purposed additions.
|
|
42
|
+
|
|
43
|
+
All Calibre libraries include expiremental development repositories where
|
|
44
|
+
new potential additions are kept for research and testing. Please,
|
|
45
|
+
feel free to explore these repositories and help contribute to those
|
|
46
|
+
works-in-progess. If you have something you'd like to add, please
|
|
47
|
+
submit and it will be placed into the appropriate development area,
|
|
48
|
+
where it will reside until deemed fit for inclusion in the main.
|
|
49
|
+
|
|
50
|
+
Note: Calibre is still a young project so a number of libs
|
|
51
|
+
still need improvements despite their inclusion in the main.
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
== Installation
|
|
55
|
+
|
|
56
|
+
presently only a manual install is avaliable but it is simple enough
|
|
57
|
+
in that it uses setup.rb. Simply uncompress the package and run
|
|
58
|
+
setup.rb. For example:
|
|
59
|
+
|
|
60
|
+
> tar -xvzf trix-x.y.z.tar.gz
|
|
61
|
+
> cd trix-x.y.z
|
|
62
|
+
> sudo ruby setup.rb
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
== Usage
|
|
66
|
+
|
|
67
|
+
Umm... that might require a book. You should look at the API RDocs.
|
|
68
|
+
To date, not everything in documented. But it's getting there.
|
|
69
|
+
You are welcome to help out. The basic requires are:
|
|
70
|
+
|
|
71
|
+
require 'calib/<file>'
|
|
72
|
+
|
|
73
|
+
require 'calib/cut/<file>'
|
|
74
|
+
require 'calib/carat/<file>'
|
|
75
|
+
|
|
76
|
+
require 'facet/<file>'
|
|
77
|
+
require 'facet/<class>/<file>'
|
|
78
|
+
|
|
79
|
+
For instance:
|
|
80
|
+
|
|
81
|
+
require 'facet/nil/empty?'
|
|
82
|
+
|
|
83
|
+
The #empty? method will be the only new method added to NilClass.
|
|
84
|
+
In the Facet's lib almost every file is named for the method in
|
|
85
|
+
contains. The only exceptions are for methods that are tightly
|
|
86
|
+
related. In these few cases either the file will be named after
|
|
87
|
+
the "core" method, or named as a conjunction, like +true&false?.rb+.
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
== Mascots
|
|
91
|
+
|
|
92
|
+
Doesn't every good project need a mascot? Well, ours is the Raspberry,
|
|
93
|
+
becasue it's red and faceted. But we also like Carrots, Baseball Diamonds
|
|
94
|
+
and Swirling Atoms. :)
|
|
95
|
+
|
|
96
|
+
==== Why Raspberry?
|
|
97
|
+
|
|
98
|
+
Becasue it adds color (namely red) and a nice flavor to the whole affair.
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
== Authorship
|
|
102
|
+
|
|
103
|
+
This collection was put together by, and much of it written by Thomas Sawyer
|
|
104
|
+
(aka T. Onoma). He can be reached via email at transami at runbox.com.
|
|
105
|
+
|
|
106
|
+
This package is a collection of work by many persons.
|
|
107
|
+
If it matters, the collection(s) per collection(s) is licensed:
|
|
108
|
+
|
|
109
|
+
Calibre, Common Application Libraries
|
|
110
|
+
Copyright (c) 2004 Thomas Sawyer
|
|
111
|
+
Ruby License
|
|
112
|
+
|
|
113
|
+
Carats, the Ruby Toolchest
|
|
114
|
+
Copyright (c) 2004 Thomas Sawyer
|
|
115
|
+
Ruby License
|
|
116
|
+
|
|
117
|
+
Cuts, Common Useful Tools
|
|
118
|
+
Copyright (c) 2004 Thomas Sawyer
|
|
119
|
+
Ruby License
|
|
120
|
+
|
|
121
|
+
But the individual pieces of code are licensed according to the original authors
|
|
122
|
+
desires, thus far being one of the following: Ruby, GPL, LGPL, MIT, or Artistic.
|
|
123
|
+
Copies of these licenses should accompany this document. Any piece of code
|
|
124
|
+
not specifically laballed shall fall under the Ruby License.
|
|
125
|
+
|
|
126
|
+
Please Note: I am working to make sure everything is labeled appropriately.
|
|
127
|
+
Please forgive me if I have not done so in a particular place --just let
|
|
128
|
+
me know and I will fix.
|
|
129
|
+
|
|
130
|
+
Also, I would like to ask all those authors, whose code is collected here,
|
|
131
|
+
to consider moving to a common license, assumedly the Ruby license,
|
|
132
|
+
so one license can serve for all.
|
|
133
|
+
|
|
134
|
+
=== Contributing Authors
|
|
135
|
+
|
|
136
|
+
This follwoing is a list code contributors.
|
|
137
|
+
(Please notify me, if anyone is missing.)
|
|
138
|
+
|
|
139
|
+
* Thomas Sawyer <transami#runbox.com>
|
|
140
|
+
* Paul Brannan <paul#atdesk.com>
|
|
141
|
+
* Renald Buter <buter#cwts.nl>
|
|
142
|
+
* Daniel J. Berger
|
|
143
|
+
* Hal Fulton <hal9000#hypermetrics.com>
|
|
144
|
+
* Gavin Sinclair <gavin#>
|
|
145
|
+
* Michael Granger <ged#FaerieMUD.org>
|
|
146
|
+
* Michael Neumann <mneumann#ntecs.de>
|
|
147
|
+
* Florian Frank
|
|
148
|
+
* Mohammad Khan <mkhan#lextranet.com>
|
|
149
|
+
* Derek Lewis <lewisd#f00f.net>
|
|
150
|
+
* Thomas-Ivo Heinen
|
|
151
|
+
* Jan Molic
|
|
152
|
+
* Shashank Date
|
|
153
|
+
* Austin Ziegler <halostatue#gmail.com>
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
== Pitch
|
|
157
|
+
|
|
158
|
+
ALL YOUR BASE ARE BELONG TO RUBY
|
|
159
|
+
|
|
160
|
+
|
|
161
|
+
----
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
[1] A lot of mental anguish went into finding good titles. Of course in the end,
|
|
165
|
+
only one theme could take the honor. Other good names that were considered were
|
|
166
|
+
Ruby Warchest w/ Atomix, Ruby Downs & Ace, Ruby Pillbox & Pills (a _why suggestion),
|
|
167
|
+
and one that almost won out, Trix & Atomx. Of course, let us not forget even older
|
|
168
|
+
"working" names that were used along the way: Tomslib, Succ, ABC and finally Raspberry.
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
# Copyright (c)2004 Thomas Sawyer
|
|
172
|
+
# --.com : The web page without a name.
|
data/note/history/README
ADDED
|
@@ -0,0 +1,223 @@
|
|
|
1
|
+
|
|
2
|
+
= Ruby Facets
|
|
3
|
+
|
|
4
|
+
"ALL BASE COMMON"
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
== Introduction
|
|
8
|
+
|
|
9
|
+
Ruby Facets is a vast collection of methods which extend the core
|
|
10
|
+
capabilities of Ruby's built-in classes and modules PLUS a large
|
|
11
|
+
collection of additional modules, classes and microframeworks.
|
|
12
|
+
The goal of the project is to offer large set of high-quality
|
|
13
|
+
programming "parts" that target a variety of usecases.
|
|
14
|
+
|
|
15
|
+
The collection of extension methods is unique by virtue of its atomicity.
|
|
16
|
+
Tthe methods are stored individually so that each can be required
|
|
17
|
+
independently. This gives developers fine-grain control over which
|
|
18
|
+
extra methods to bring into his or her code. The collection currently
|
|
19
|
+
contains over 400 methods spanning 28 classes and modules.
|
|
20
|
+
|
|
21
|
+
The class, module and microframework additions consitute an ever growing
|
|
22
|
+
and improving source of reusable components. Some very nice addations
|
|
23
|
+
havve recently been added, from an amazing Units system to an elegant
|
|
24
|
+
annotations systems. And of course there are all the more typical goodies
|
|
25
|
+
like Tuple, Functor and Multiton.
|
|
26
|
+
|
|
27
|
+
Facets holds to the notion that the more we can reasonably integrate into
|
|
28
|
+
a common foundation directed toward general needs, the better that foundation
|
|
29
|
+
will be able to serve us. There are a number of advantages here:
|
|
30
|
+
|
|
31
|
+
* Better Code-reuse
|
|
32
|
+
* Collaborative Improvements
|
|
33
|
+
* Greater Name Consistency
|
|
34
|
+
* One-stop Shop and Installation
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
== Status
|
|
38
|
+
|
|
39
|
+
The current status is quite good. While various parts are still considered
|
|
40
|
+
Beta, everything should be relatively usable.
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
== Installation
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
The easiest way to install is via RubyGems. On the command line enter:
|
|
47
|
+
|
|
48
|
+
> gem install facets
|
|
49
|
+
|
|
50
|
+
To manually install, unpack the .tbz (.tar.bz2) package and use the included
|
|
51
|
+
setup.rb script. For example:
|
|
52
|
+
|
|
53
|
+
> tar -xvzf facets,YYYY-MM-DD.tbz
|
|
54
|
+
> cd facets,YYYY-MM-DD
|
|
55
|
+
> sudo ruby setup.rb
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
== Usage
|
|
59
|
+
|
|
60
|
+
For detailed usage of any given method or module please refer to the
|
|
61
|
+
API RDocs. Most are well documented.
|
|
62
|
+
|
|
63
|
+
Although not at all neccessary it is recommended that before requiring
|
|
64
|
+
any other facet you first require the main facility.
|
|
65
|
+
|
|
66
|
+
require 'facets'
|
|
67
|
+
|
|
68
|
+
This loads all the facets considered "base" --facets that are fundementally
|
|
69
|
+
useful, plus loads the Facets system module. The Facets module provides a
|
|
70
|
+
more robust interface to aquiring extension methods. In the past one would
|
|
71
|
+
have used the Kernel#require method like so:
|
|
72
|
+
|
|
73
|
+
require 'facet/time/stamp' # TOO BE DEPRECATED !!!
|
|
74
|
+
|
|
75
|
+
You should begin transitioning to:
|
|
76
|
+
|
|
77
|
+
Time.use Facets, :stamp
|
|
78
|
+
|
|
79
|
+
Using this method allows Facets to work more perceisely and efficiently. One
|
|
80
|
+
of the advantages that arises is that Facets' can search the class hierarchy
|
|
81
|
+
for a method. For example if you wanted to use #each_permutation on an Array.
|
|
82
|
+
|
|
83
|
+
Array.use Facets, :each_permutation
|
|
84
|
+
|
|
85
|
+
Even though #each_permutation is a method of Enumerable this will still work
|
|
86
|
+
because Enumerable is a superclass of Array.
|
|
87
|
+
|
|
88
|
+
Also it allows for the use operators without special recourse.
|
|
89
|
+
For instance, the Proc compostion operator can be require simply.
|
|
90
|
+
|
|
91
|
+
Proc.use Facets, :*
|
|
92
|
+
|
|
93
|
+
If you're wondering why you have to specify the Facets module in #use,
|
|
94
|
+
it is becuase #use is a generalized method. Anyone can easily take advantage
|
|
95
|
+
of this functionality by utlizing Facets' Module-Package system (package.rb).
|
|
96
|
+
See the API Documentation for further details of putting this to use in your
|
|
97
|
+
programs.
|
|
98
|
+
|
|
99
|
+
Some extension methodsets are also available. These are loaded in traditional
|
|
100
|
+
manner. For example:
|
|
101
|
+
|
|
102
|
+
require 'facet/string_as_array'
|
|
103
|
+
|
|
104
|
+
The most extensive of these is 'all'. The 'all' set requires nearly every
|
|
105
|
+
Facets extension method there is. The only methods NOT required are those
|
|
106
|
+
considered "cautionary" in the way they effect Ruby b/c they may potentially
|
|
107
|
+
disrupt pre-existing code. Note that 'all' is not the recommended way to
|
|
108
|
+
use Facets and is only provided with a priviso of caution --that's alot
|
|
109
|
+
of methods!
|
|
110
|
+
|
|
111
|
+
More useful sets include, 'random' which loads every facet method related to
|
|
112
|
+
randomness and 'inflect' which loads a number of methods for manipulating
|
|
113
|
+
strings in high-level ways, like #camelize and #pluralize.
|
|
114
|
+
|
|
115
|
+
The rest of Facets, the modules, classses and microframeworks are
|
|
116
|
+
requirable through the traditional interface as well. For example:
|
|
117
|
+
|
|
118
|
+
require 'facet/units'
|
|
119
|
+
|
|
120
|
+
Facets also includes an alternative way to use classes and modules.
|
|
121
|
+
By calling the #autorequire method, Facets will automatically
|
|
122
|
+
require the appropriate files when you first attempt to use one.
|
|
123
|
+
For example:
|
|
124
|
+
|
|
125
|
+
require 'facets'
|
|
126
|
+
|
|
127
|
+
Facets.autorequire
|
|
128
|
+
|
|
129
|
+
t = Tuple[1,2,3]
|
|
130
|
+
|
|
131
|
+
And the 'tuple.rb' file will be automatically required. The auto-requiring
|
|
132
|
+
also handily applies to some of Ruby's standard library.
|
|
133
|
+
Keep in mind though that the microframeworks do not generally work with this,
|
|
134
|
+
since they are not typical bound to a particular module or class,
|
|
135
|
+
so those will have to be required on their own.
|
|
136
|
+
|
|
137
|
+
Please see the API Docs for details pertaining to the functionality
|
|
138
|
+
of each feature.
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
== Contribute
|
|
142
|
+
|
|
143
|
+
This project thrives on contribution.
|
|
144
|
+
|
|
145
|
+
If you have any extension methods, classes, modules or microframeworks
|
|
146
|
+
that you think have general applicability and would like to see them
|
|
147
|
+
included in this project, don't hesitiate to submit. There's a very good
|
|
148
|
+
chance it will be included. Also, if you have better versions of any thing
|
|
149
|
+
already included or simply have a patch, they too are more than welcome.
|
|
150
|
+
We want Ruby Facets to be of the highest quality.
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
== Authorship
|
|
154
|
+
|
|
155
|
+
This collection was put together by, and largely written by Thomas Sawyer
|
|
156
|
+
(aka Trans Onoma). He can be reached via email at transfire at gmail.com.
|
|
157
|
+
|
|
158
|
+
Some parts of this collection were written and/or inspired by other
|
|
159
|
+
persons. Fortunately nearly all were copyrighted under the same open
|
|
160
|
+
license, the Ruby License. In the few excpetions I have included the
|
|
161
|
+
copyright notice with the source code.
|
|
162
|
+
|
|
163
|
+
Any code file not specifically labelled shall fall under the Ruby License.
|
|
164
|
+
|
|
165
|
+
In all cases, I have made every effort to give credit where credit is due. You will find these copyrights, thanks and acknowledgements embedded in the source code, and an unobtrusive
|
|
166
|
+
"Author(s)" section is given in the RDocs.
|
|
167
|
+
|
|
168
|
+
Main Developers include:
|
|
169
|
+
|
|
170
|
+
* Thomas Sawyer
|
|
171
|
+
* George Moschovitis
|
|
172
|
+
* Peter Vanbroekhoven
|
|
173
|
+
* Florian Gross
|
|
174
|
+
|
|
175
|
+
See the AUTHORS file for a list of all other contributing Rubyists.
|
|
176
|
+
|
|
177
|
+
If anyone is missing from the list, please let me know and
|
|
178
|
+
I will correct right away. Thanks.
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
== License
|
|
182
|
+
|
|
183
|
+
In so far as it matters, the collection PER COLLECTION is licensed
|
|
184
|
+
as follows:
|
|
185
|
+
|
|
186
|
+
Ruby Facets
|
|
187
|
+
Copyright (c) 2004,2005 Thomas Sawyer
|
|
188
|
+
Ruby License
|
|
189
|
+
|
|
190
|
+
The Ruby license is a dual license that also provides for use of the GPL.
|
|
191
|
+
A copy of both licenses accompany this document (see COPYING).
|
|
192
|
+
|
|
193
|
+
Fortunately nearly all the code is copyrighted under the same open license,
|
|
194
|
+
namely the Ruby License. But some of the code is licensed differently
|
|
195
|
+
according to the original authors wishes. In the few excpetions I have
|
|
196
|
+
included the copyright notice with the source code. All such licesnses are
|
|
197
|
+
OOS licesnes. I am in the proccess of asking the particular authors to consider
|
|
198
|
+
allowing the use of the single Ruby license so that one license can
|
|
199
|
+
serve for all. (UPDATE: Not very much left under seperate licenses.)
|
|
200
|
+
|
|
201
|
+
Any code file not specifically labelled shall fall under the Ruby License.
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
== Pitch
|
|
205
|
+
|
|
206
|
+
ALL YOUR BASE ARE BELONG TO RUBY
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
----
|
|
210
|
+
|
|
211
|
+
[1] A lot of mental anguish went into finding a good title Ruby Facets.
|
|
212
|
+
Of course, in the end only one name can take the honor. Other good names which were
|
|
213
|
+
considered: Warchest w/ Atomix, Downs & Ace, Trix & Atomx and even Pillbox & Pills
|
|
214
|
+
(a _why suggestion). Then the names that almost won out and were used for a good while:
|
|
215
|
+
Nano Methods and Mega Modules --great names but turned maybe a little to "fad".
|
|
216
|
+
Finally let's not forget even older "working" titles that were used along the way:
|
|
217
|
+
Raspberry, ABC, Succ and the very original Tomslib.
|
|
218
|
+
|
|
219
|
+
# Copyright (c)2005 Thomas Sawyer
|
|
220
|
+
# --.com : The web page without a name.
|
|
221
|
+
# (ruby-lang.org) Do you Ruby?
|
|
222
|
+
|
|
223
|
+
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
|
|
2
|
+
= Ruby Facets
|
|
3
|
+
|
|
4
|
+
== What is this?
|
|
5
|
+
|
|
6
|
+
Ruby Facets is the a collection of general, pure-Ruby extensions
|
|
7
|
+
and additions for the Ruby programming language. The extensions are known
|
|
8
|
+
as the Atomic Methods, design falls into
|
|
9
|
+
two parts: the Atomic Methods and the CMMs (Classes, Modules and Mixins).
|
|
10
|
+
|
|
11
|
+
=== The Atomic Library
|
|
12
|
+
|
|
13
|
+
The heart of Ruby Facets, which truth be told stands for Fantastic Atomic Core Extensions,
|
|
14
|
+
is an growing collection of methods to complement Ruby's core and standard
|
|
15
|
+
libs. It is an _atomic_ library in that the methods are packaged individually
|
|
16
|
+
so that each can be _required_ independently. This gives the programmer greater
|
|
17
|
+
control to include only the extra methods he or she actually needs.
|
|
18
|
+
The package currently contains over 300 atomic methods, spanning over 26 classes and modules.
|
|
19
|
+
|
|
20
|
+
=== The Classes, Modules and Mixins
|
|
21
|
+
|
|
22
|
+
In addition to the atomic methods, Facets also includes a large collection
|
|
23
|
+
of addon classes, modules and mixins. [Note: These used to reside in a separate lib
|
|
24
|
+
called Carats. This has been deprecated in favor of a single package.]
|
|
25
|
+
|
|
26
|
+
In short, through a single package, the Ruby programmer is treated to a
|
|
27
|
+
plethora of programming tools.
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
== Calibre
|
|
31
|
+
|
|
32
|
+
Ruby Facets is part of the Calibre project. You can learn more at:
|
|
33
|
+
|
|
34
|
+
http://calibre.rubyforge.com
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
== Installation
|
|
38
|
+
|
|
39
|
+
The easiest way to install is via RubyGems. On the command line enter:
|
|
40
|
+
|
|
41
|
+
> gem install facets
|
|
42
|
+
|
|
43
|
+
To manually install, untar the package and use the included setup.rb script.
|
|
44
|
+
For example:
|
|
45
|
+
|
|
46
|
+
> tar -xvzf facets-x.y.z.tar.gz
|
|
47
|
+
> cd facets--x.y.z
|
|
48
|
+
> sudo ruby setup.rb
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
== Usage
|
|
52
|
+
|
|
53
|
+
There are quite a few methods, classes and modules. For detailed usage it is best
|
|
54
|
+
to refer to the API RDocs. Most is well documented. Assistance in
|
|
55
|
+
improving documentation though is always appreciated.
|
|
56
|
+
|
|
57
|
+
The general require statement for an atomic facet is as follows:
|
|
58
|
+
|
|
59
|
+
require 'facet/<class|module>/<method-name>'
|
|
60
|
+
|
|
61
|
+
All lowercase. The method-name may differ a bit from the actual method. If a method-name
|
|
62
|
+
ends in ?, !, or = the character is simply removed. For methods that are non-alphanumeric,
|
|
63
|
+
a suitable name is chosen according ot the methods functionaity and then suffixed with '-op',
|
|
64
|
+
for "operator". For example, perhaps a paricular application would be better
|
|
65
|
+
served if the NilClass responded to the <tt>#empty?</tt> message.
|
|
66
|
+
|
|
67
|
+
require 'facet/nil/empty'
|
|
68
|
+
|
|
69
|
+
And the <tt>#empty?</tt> method will then be only new method added.
|
|
70
|
+
Most "atoms" contain but a single method, but excpetions occur when methods
|
|
71
|
+
very tightly related.
|
|
72
|
+
|
|
73
|
+
There are also numerous shortcuts for including atoms in mass.
|
|
74
|
+
Some of these occur at the top-level under 'facets/', while
|
|
75
|
+
others occur in the atomic subdirectory 'facets/{class|module}/'.
|
|
76
|
+
|
|
77
|
+
The two most notable shortcuts are 'base' and 'common'.
|
|
78
|
+
If you wish to include all the methods considered basic:
|
|
79
|
+
|
|
80
|
+
require 'facet/base'
|
|
81
|
+
|
|
82
|
+
This represents a group of about two dozen methods that are
|
|
83
|
+
considered likely to be included in future versions of Ruby itself.
|
|
84
|
+
If you would like to include the "base" methods plus all the methods
|
|
85
|
+
considered "common":
|
|
86
|
+
|
|
87
|
+
require 'facet/common'
|
|
88
|
+
|
|
89
|
+
This is a large selection of methods that are considered the most
|
|
90
|
+
often useful.
|
|
91
|
+
|
|
92
|
+
All methods considered "uncommon" must be require individually.
|
|
93
|
+
It is possible for a few of the uncommon methods to conflict,
|
|
94
|
+
so there is no way to include _everything_ all at once.
|
|
95
|
+
|
|
96
|
+
On top of all this there are the non-atomic additions. These never
|
|
97
|
+
fall into a subdirectory, and can always be require accordingly:
|
|
98
|
+
|
|
99
|
+
require 'facet/{file-name}'
|
|
100
|
+
|
|
101
|
+
As for actual examples, well that might require a book.
|
|
102
|
+
But again, refer to the API docs.
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
== Contribute
|
|
106
|
+
|
|
107
|
+
The project thrives on contribution. Please feel free to offer any
|
|
108
|
+
extension you wish. The criteria for inclusion is fairly light:
|
|
109
|
+
|
|
110
|
+
* Is it generally useful and/or highly interesting?
|
|
111
|
+
* Does it pass a basic testcase?
|
|
112
|
+
|
|
113
|
+
If it meets these requirements then it will in all likelihood
|
|
114
|
+
be accepted into the main facets lib.
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
== Authorship
|
|
118
|
+
|
|
119
|
+
This collection was put together by, and largely written by Thomas Sawyer
|
|
120
|
+
(aka T. Onoma). He can be reached via email at transfire at gmail.com.
|
|
121
|
+
|
|
122
|
+
Some parts of this collection were written and/or inspired by other
|
|
123
|
+
persons. Fortunately nearly all were copyrighted under the same open
|
|
124
|
+
license as this library. In the few excpetions I have included the
|
|
125
|
+
copyright notice with the source code. In all cases, I have made every
|
|
126
|
+
effort to give credit where credit is due. You will find these thanks
|
|
127
|
+
and acknowledgements at the beginning of the source code.
|
|
128
|
+
|
|
129
|
+
* Thomas Sawyer
|
|
130
|
+
* Paul Brannan
|
|
131
|
+
* Renald Buter
|
|
132
|
+
* Hal Fulton
|
|
133
|
+
* Gavin Sinclair
|
|
134
|
+
* Michael Granger
|
|
135
|
+
* Michael Neumann
|
|
136
|
+
* Florian Frank
|
|
137
|
+
* Mohammad Khan
|
|
138
|
+
* Derek Lewis
|
|
139
|
+
* Thomas-Ivo Heinen
|
|
140
|
+
* Jan Molic
|
|
141
|
+
|
|
142
|
+
This package is a collection of work by many persons.
|
|
143
|
+
The actual code on is licensed according to the original authors
|
|
144
|
+
desires, being one of the following: Ruby, GPL, LGPL, MIT, or Artistic.
|
|
145
|
+
Copies of these licenses should accompany this document. Any piece of code
|
|
146
|
+
not specifically laballed shall fall under the Ruby License.
|
|
147
|
+
|
|
148
|
+
[Please Note: I am working to make sure everything is labeled appropriately.
|
|
149
|
+
Please forgive me if I have not done so in a particular place --just let
|
|
150
|
+
me know and I will fix.]
|
|
151
|
+
|
|
152
|
+
Also, I would like to ask all those authors, whose code is collected here,
|
|
153
|
+
to consider allowing me to move to the Ruby license, so one license can serve
|
|
154
|
+
for all.
|
|
155
|
+
|
|
156
|
+
|
|
157
|
+
== License
|
|
158
|
+
|
|
159
|
+
The collection per collection is licensed as follows:
|
|
160
|
+
|
|
161
|
+
Ruby Facets, the Fantastic Atomic Core Extensions
|
|
162
|
+
Copyright (c) 2004,2005 Thomas Sawyer
|
|
163
|
+
Ruby License
|
|
164
|
+
|
|
165
|
+
The Ruby license is a dual license that also provides for use of the GPL.
|
|
166
|
+
A copy of both licenses should accompany this document.
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
== Mascot
|
|
170
|
+
|
|
171
|
+
Does evey good project need a mascot? Well then, Facets
|
|
172
|
+
has the Raspberry. Why the Raspberry? Because it is
|
|
173
|
+
Red and Faceted, of course. :)
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
== Pitch
|
|
177
|
+
|
|
178
|
+
ALL YOUR BASE ARE BELONG TO RUBY
|
|
179
|
+
|
|
180
|
+
|