facets 0.9.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +9 -2
- data/ProjectInfo +15 -22
- data/Rakefile +17 -15
- data/TODO +2 -29
- data/lib/facet/array.rb +33 -1
- data/lib/facet/array/at_rand.rb +52 -1
- data/lib/facet/array/body.rb +2 -1
- data/lib/facet/array/delete_unless.rb +35 -1
- data/lib/facet/array/delete_values.rb +38 -1
- data/lib/facet/array/delete_values_at.rb +57 -1
- data/lib/facet/array/each_with_key.rb +9 -1
- data/lib/facet/array/first.rb +84 -1
- data/lib/facet/array/foot.rb +2 -1
- data/lib/facet/array/head.rb +80 -1
- data/lib/facet/array/last.rb +2 -1
- data/lib/facet/array/last_index.rb +35 -1
- data/lib/facet/array/merge.rb +40 -1
- data/lib/facet/array/mid.rb +50 -1
- data/lib/facet/array/middle.rb +45 -1
- data/lib/facet/array/op_fetch.rb +40 -1
- data/lib/facet/array/op_store.rb +47 -1
- data/lib/facet/array/pick.rb +68 -1
- data/lib/facet/array/pos.rb +39 -1
- data/lib/facet/array/pull.rb +37 -1
- data/lib/facet/array/rand_index.rb +30 -1
- data/lib/facet/array/rand_subset.rb +56 -1
- data/lib/facet/array/range.rb +47 -1
- data/lib/facet/array/rotate.rb +67 -1
- data/lib/facet/array/select.rb +37 -1
- data/lib/facet/array/shuffle.rb +66 -1
- data/lib/facet/array/slap.rb +37 -1
- data/lib/facet/array/store.rb +7 -1
- data/lib/facet/array/tail.rb +2 -1
- data/lib/facet/array/thru.rb +38 -1
- data/lib/facet/array/to_b.rb +31 -1
- data/lib/facet/array/to_h.rb +57 -1
- data/lib/facet/array/to_hash.rb +46 -1
- data/lib/facet/array/unzip.rb +20 -1
- data/lib/facet/binding.rb +14 -1
- data/lib/facet/binding/__DIR__.rb +2 -1
- data/lib/facet/binding/__FILE__.rb +2 -1
- data/lib/facet/binding/__LINE__.rb +58 -1
- data/lib/facet/binding/call_stack.rb +42 -1
- data/lib/facet/binding/called.rb +41 -1
- data/lib/facet/binding/caller.rb +42 -1
- data/lib/facet/binding/defined.rb +41 -1
- data/lib/facet/binding/eval.rb +42 -1
- data/lib/facet/binding/local_variables.rb +45 -1
- data/lib/facet/binding/method_name.rb +48 -1
- data/lib/facet/binding/op_fetch.rb +45 -1
- data/lib/facet/binding/op_store.rb +46 -1
- data/lib/facet/binding/self.rb +41 -1
- data/lib/facet/binding/self/of_caller.rb +122 -1
- data/lib/facet/class.rb +5 -1
- data/lib/facet/class/by_name.rb +1 -1
- data/lib/facet/class/descendents.rb +44 -1
- data/lib/facet/class/remove_descendents.rb +46 -1
- data/lib/facet/class/remove_subclasses.rb +2 -1
- data/lib/facet/class/subclasses.rb +2 -1
- data/lib/facet/comparable.rb +5 -1
- data/lib/facet/comparable/at_least.rb +53 -1
- data/lib/facet/comparable/at_most.rb +2 -1
- data/lib/facet/comparable/cap.rb +2 -1
- data/lib/facet/comparable/clip.rb +72 -1
- data/lib/facet/comparable/cmp.rb +38 -1
- data/lib/facet/continuation.rb +1 -1
- data/lib/facet/continuation/self/create.rb +71 -1
- data/lib/facet/date.rb +0 -1
- data/lib/facet/date/days_in_month.rb +42 -1
- data/lib/facet/date/days_of_month.rb +34 -1
- data/lib/facet/date/stamp.rb +52 -1
- data/lib/facet/date/to_date.rb +36 -1
- data/lib/facet/date/to_s.rb +33 -1
- data/lib/facet/date/to_time.rb +36 -1
- data/lib/facet/dir.rb +4 -1
- data/lib/facet/dir/self/ancestor.rb +33 -1
- data/lib/facet/dir/self/ascend.rb +56 -1
- data/lib/facet/dir/self/ls_r.rb +76 -1
- data/lib/facet/dir/self/recurse.rb +2 -1
- data/lib/facet/enumerable.rb +38 -1
- data/lib/facet/enumerable/collect_with_counter.rb +2 -1
- data/lib/facet/enumerable/collect_with_index.rb +51 -1
- data/lib/facet/enumerable/commonality.rb +63 -1
- data/lib/facet/enumerable/compact_collect.rb +50 -1
- data/lib/facet/enumerable/compact_map.rb +2 -1
- data/lib/facet/enumerable/cross.rb +44 -1
- data/lib/facet/enumerable/each_by.rb +2 -1
- data/lib/facet/enumerable/each_combination.rb +59 -1
- data/lib/facet/enumerable/each_pair.rb +50 -1
- data/lib/facet/enumerable/each_permutation.rb +2 -1
- data/lib/facet/enumerable/each_slice.rb +131 -1
- data/lib/facet/enumerable/each_unique_pair.rb +66 -1
- data/lib/facet/enumerable/each_with_counter.rb +8 -1
- data/lib/facet/enumerable/elementwise.rb +2 -1
- data/lib/facet/enumerable/entropy.rb +52 -1
- data/lib/facet/enumerable/every.rb +65 -1
- data/lib/facet/enumerable/ew.rb +64 -1
- data/lib/facet/enumerable/filter_collect.rb +58 -1
- data/lib/facet/enumerable/filter_map.rb +2 -1
- data/lib/facet/enumerable/find_collisions.rb +41 -1
- data/lib/facet/enumerable/frequency.rb +39 -1
- data/lib/facet/enumerable/graph.rb +59 -1
- data/lib/facet/enumerable/ideal_entropy.rb +49 -1
- data/lib/facet/enumerable/map_with_counter.rb +2 -1
- data/lib/facet/enumerable/map_with_index.rb +2 -1
- data/lib/facet/enumerable/none.rb +56 -1
- data/lib/facet/enumerable/nonuniq.rb +39 -1
- data/lib/facet/enumerable/occur.rb +62 -1
- data/lib/facet/enumerable/one.rb +65 -1
- data/lib/facet/enumerable/op_pow.rb +38 -1
- data/lib/facet/enumerable/partition_by.rb +55 -1
- data/lib/facet/enumerable/permute.rb +135 -0
- data/lib/facet/enumerable/probability.rb +59 -1
- data/lib/facet/enumerable/project.rb +11 -1
- data/lib/facet/enumerable/self/combinations.rb +68 -1
- data/lib/facet/enumerable/self/cross.rb +79 -1
- data/lib/facet/enumerable/to_h.rb +50 -1
- data/lib/facet/enumerable/uniq_by.rb +39 -1
- data/lib/facet/enumerable/where.rb +12 -1
- data/lib/facet/file.rb +5 -1
- data/lib/facet/file/self/create.rb +52 -1
- data/lib/facet/file/self/open_as_string.rb +81 -1
- data/lib/facet/file/self/read_list.rb +47 -1
- data/lib/facet/file/self/sanitize.rb +50 -1
- data/lib/facet/file/self/split_all.rb +36 -1
- data/lib/facet/fileutils.rb +0 -1
- data/lib/facet/fileutils/head.rb +2 -1
- data/lib/facet/fileutils/safe_ln.rb +38 -1
- data/lib/facet/fileutils/slice.rb +152 -1
- data/lib/facet/fileutils/split_all.rb +29 -1
- data/lib/facet/fileutils/tail.rb +2 -1
- data/lib/facet/fileutils/wc.rb +128 -1
- data/lib/facet/fileutils/whereis.rb +76 -1
- data/lib/facet/fileutils/which.rb +117 -1
- data/lib/facet/float.rb +3 -1
- data/lib/facet/float/approx.rb +42 -1
- data/lib/facet/float/round_at.rb +72 -1
- data/lib/facet/float/round_to.rb +73 -1
- data/lib/facet/hash.rb +40 -1
- data/lib/facet/hash/alias.rb +54 -1
- data/lib/facet/hash/assert_has_keys.rb +38 -1
- data/lib/facet/hash/assert_has_only_keys.rb +38 -1
- data/lib/facet/hash/at.rb +26 -1
- data/lib/facet/hash/collate.rb +53 -1
- data/lib/facet/hash/delete_unless.rb +15 -1
- data/lib/facet/hash/each.rb +61 -1
- data/lib/facet/hash/each_with_index.rb +35 -1
- data/lib/facet/hash/each_with_key.rb +32 -1
- data/lib/facet/hash/graph.rb +31 -1
- data/lib/facet/hash/has_keys.rb +37 -1
- data/lib/facet/hash/has_only_keys.rb +37 -1
- data/lib/facet/hash/inverse.rb +51 -1
- data/lib/facet/hash/join.rb +19 -1
- data/lib/facet/hash/keys_to_iv.rb +60 -1
- data/lib/facet/hash/keys_to_s.rb +80 -1
- data/lib/facet/hash/keys_to_sym.rb +91 -1
- data/lib/facet/hash/op_fetch.rb +146 -1
- data/lib/facet/hash/op_lshift.rb +28 -1
- data/lib/facet/hash/op_store.rb +2 -1
- data/lib/facet/hash/rand_key.rb +47 -1
- data/lib/facet/hash/rand_pair.rb +50 -1
- data/lib/facet/hash/rand_value.rb +60 -1
- data/lib/facet/hash/replace_each.rb +33 -1
- data/lib/facet/hash/self/zipnew.rb +37 -1
- data/lib/facet/hash/shuffle.rb +53 -1
- data/lib/facet/hash/slice.rb +33 -1
- data/lib/facet/hash/stringify_keys.rb +2 -1
- data/lib/facet/hash/swap.rb +36 -1
- data/lib/facet/hash/swapkey.rb +44 -1
- data/lib/facet/hash/symoblize_keys.rb +2 -1
- data/lib/facet/hash/to_h.rb +35 -1
- data/lib/facet/hash/to_ostruct.rb +40 -1
- data/lib/facet/hash/to_ostruct_recurse.rb +45 -1
- data/lib/facet/hash/traverse.rb +63 -1
- data/lib/facet/hash/update_each.rb +43 -1
- data/lib/facet/hash/update_keys.rb +31 -1
- data/lib/facet/hash/update_values.rb +32 -1
- data/lib/facet/hash/variablize_keys.rb +2 -1
- data/lib/facet/hash/weave.rb +88 -1
- data/lib/facet/integer.rb +8 -1
- data/lib/facet/integer/even.rb +2 -1
- data/lib/facet/integer/fac.rb +2 -0
- data/lib/facet/integer/fact.rb +2 -1
- data/lib/facet/integer/factorial.rb +61 -1
- data/lib/facet/integer/multiple.rb +69 -1
- data/lib/facet/integer/odd.rb +2 -1
- data/lib/facet/integer/ordinal.rb +41 -1
- data/lib/facet/integer/times_collect.rb +39 -1
- data/lib/facet/integer/times_map.rb +2 -1
- data/lib/facet/kernel.rb +65 -1
- data/lib/facet/kernel/__DIR__.rb +11 -0
- data/lib/facet/kernel/__class__.rb +31 -1
- data/lib/facet/kernel/__meta__.rb +28 -1
- data/lib/facet/kernel/adhoc.rb +11 -0
- data/lib/facet/kernel/as.rb +91 -1
- data/lib/facet/kernel/assign_from.rb +82 -1
- data/lib/facet/kernel/assign_with.rb +75 -1
- data/lib/facet/kernel/autoreload.rb +46 -1
- data/lib/facet/kernel/autoreload_glob.rb +36 -1
- data/lib/facet/kernel/bool.rb +77 -1
- data/lib/facet/kernel/bug.rb +39 -1
- data/lib/facet/kernel/call_stack.rb +59 -1
- data/lib/facet/kernel/called.rb +40 -1
- data/lib/facet/kernel/complete.rb +6 -1
- data/lib/facet/kernel/constant.rb +52 -1
- data/lib/facet/kernel/copy.rb +48 -1
- data/lib/facet/kernel/deep_copy.rb +49 -1
- data/lib/facet/kernel/demo.rb +46 -1
- data/lib/facet/kernel/eigenclass.rb +17 -1
- data/lib/facet/kernel/false.rb +2 -1
- data/lib/facet/kernel/fn.rb +33 -1
- data/lib/facet/kernel/generate_method_name.rb +39 -1
- data/lib/facet/kernel/get_by_id.rb +33 -1
- data/lib/facet/kernel/here.rb +34 -1
- data/lib/facet/kernel/in.rb +35 -1
- data/lib/facet/kernel/instance_assign.rb +25 -1
- data/lib/facet/kernel/instvar.rb +13 -1
- data/lib/facet/kernel/is.rb +5 -1
- data/lib/facet/kernel/maybe.rb +41 -1
- data/lib/facet/kernel/me.rb +17 -1
- data/lib/facet/kernel/meta.rb +2 -1
- data/lib/facet/kernel/metaclass.rb +42 -1
- data/lib/facet/kernel/method.rb +76 -1
- data/lib/facet/kernel/method_name.rb +49 -1
- data/lib/facet/kernel/methods.rb +79 -1
- data/lib/facet/kernel/nack.rb +12 -1
- data/lib/facet/kernel/new.rb +40 -1
- data/lib/facet/kernel/object_class.rb +31 -1
- data/lib/facet/kernel/object_hexid.rb +35 -1
- data/lib/facet/kernel/op_esc.rb +37 -1
- data/lib/facet/kernel/own.rb +17 -1
- data/lib/facet/kernel/p.rb +12 -1
- data/lib/facet/kernel/require_all.rb +44 -1
- data/lib/facet/kernel/require_esc.rb +42 -1
- data/lib/facet/kernel/require_facet.rb +41 -1
- data/lib/facet/kernel/require_local.rb +25 -1
- data/lib/facet/kernel/resc.rb +32 -1
- data/lib/facet/kernel/returning.rb +49 -1
- data/lib/facet/kernel/send_as.rb +34 -1
- data/lib/facet/kernel/set_from.rb +69 -1
- data/lib/facet/kernel/set_with.rb +74 -1
- data/lib/facet/kernel/silence_warnings.rb +2 -1
- data/lib/facet/kernel/silently.rb +41 -1
- data/lib/facet/kernel/singleton.rb +47 -1
- data/lib/facet/kernel/superior.rb +53 -1
- data/lib/facet/kernel/supermethod.rb +44 -1
- data/lib/facet/kernel/this.rb +33 -1
- data/lib/facet/kernel/to_b.rb +41 -1
- data/lib/facet/kernel/to_bool.rb +47 -1
- data/lib/facet/kernel/true.rb +2 -1
- data/lib/facet/kernel/unuri.rb +2 -1
- data/lib/facet/kernel/uri.rb +38 -1
- data/lib/facet/kernel/val.rb +52 -1
- data/lib/facet/kernel/warn_with_line.rb +30 -1
- data/lib/facet/kernel/with_accessor.rb +94 -1
- data/lib/facet/kernel/with_reader.rb +2 -1
- data/lib/facet/kernel/with_writer.rb +2 -1
- data/lib/facet/logger.rb +0 -1
- data/lib/facet/logger/format.rb +28 -1
- data/lib/facet/logger/format_message.rb +1 -1
- data/lib/facet/matchdata.rb +3 -1
- data/lib/facet/matchdata/match.rb +37 -1
- data/lib/facet/matchdata/matchset.rb +2 -1
- data/lib/facet/matchdata/matchtree.rb +62 -1
- data/lib/facet/module.rb +40 -1
- data/lib/facet/module/abstract.rb +50 -1
- data/lib/facet/module/alias_module_function.rb +57 -1
- data/lib/facet/module/ancestor.rb +38 -1
- data/lib/facet/module/attr.rb +23 -1
- data/lib/facet/module/attr_setter.rb +48 -1
- data/lib/facet/module/attr_tester.rb +56 -1
- data/lib/facet/module/basename.rb +39 -1
- data/lib/facet/module/by_name.rb +68 -1
- data/lib/facet/module/cattr_accessor.rb +141 -1
- data/lib/facet/module/cattr_reader.rb +2 -1
- data/lib/facet/module/cattr_writer.rb +2 -1
- data/lib/facet/module/clone_removing.rb +2 -1
- data/lib/facet/module/clone_renaming.rb +2 -1
- data/lib/facet/module/clone_using.rb +87 -1
- data/lib/facet/module/dirname.rb +42 -1
- data/lib/facet/module/equate_on.rb +70 -1
- data/lib/facet/module/generate_instance_method_name.rb +47 -1
- data/lib/facet/module/include_as.rb +102 -1
- data/lib/facet/module/initializer.rb +65 -1
- data/lib/facet/module/instance_methods.rb +186 -1
- data/lib/facet/module/integrate.rb +51 -1
- data/lib/facet/module/is.rb +34 -1
- data/lib/facet/module/memoize.rb +95 -1
- data/lib/facet/module/modspace.rb +43 -1
- data/lib/facet/module/namespace.rb +61 -1
- data/lib/facet/module/nesting.rb +45 -1
- data/lib/facet/module/redef.rb +31 -1
- data/lib/facet/module/redefine_method.rb +57 -1
- data/lib/facet/module/redirect.rb +30 -1
- data/lib/facet/module/redirect_method.rb +64 -1
- data/lib/facet/module/remove.rb +29 -1
- data/lib/facet/module/rename.rb +31 -1
- data/lib/facet/module/rename_method.rb +38 -1
- data/lib/facet/module/revisal.rb +49 -1
- data/lib/facet/module/shadow_all.rb +17 -1
- data/lib/facet/module/shadow_method.rb +42 -1
- data/lib/facet/module/sort_on.rb +73 -1
- data/lib/facet/module/undef.rb +29 -1
- data/lib/facet/module/wrap.rb +30 -1
- data/lib/facet/module/wrap_method.rb +48 -1
- data/lib/facet/nilclass.rb +7 -1
- data/lib/facet/nilclass/empty.rb +32 -1
- data/lib/facet/nilclass/include.rb +32 -1
- data/lib/facet/nilclass/length.rb +2 -1
- data/lib/facet/nilclass/op_fetch.rb +37 -1
- data/lib/facet/nilclass/size.rb +44 -1
- data/lib/facet/nilclass/to_f.rb +32 -1
- data/lib/facet/nilclass/to_h.rb +33 -1
- data/lib/facet/numeric.rb +5 -1
- data/lib/facet/numeric/ceil_multiple.rb +40 -1
- data/lib/facet/numeric/pred.rb +2 -1
- data/lib/facet/numeric/succ.rb +69 -1
- data/lib/facet/numeric/to_b.rb +38 -1
- data/lib/facet/ostruct.rb +0 -1
- data/lib/facet/ostruct/__merge__.rb +52 -1
- data/lib/facet/ostruct/__table__.rb +17 -1
- data/lib/facet/ostruct/__update__.rb +45 -1
- data/lib/facet/ostruct/op_fetch.rb +40 -1
- data/lib/facet/ostruct/op_store.rb +42 -1
- data/lib/facet/ostruct/to_h.rb +8 -1
- data/lib/facet/pathname.rb +2 -1
- data/lib/facet/pathname/ascend.rb +22 -1
- data/lib/facet/pathname/descend.rb +20 -1
- data/lib/facet/proc.rb +3 -1
- data/lib/facet/proc/compose.rb +62 -1
- data/lib/facet/proc/op_mul.rb +2 -1
- data/lib/facet/proc/to_method.rb +74 -1
- data/lib/facet/range.rb +4 -1
- data/lib/facet/range/to_r.rb +32 -1
- data/lib/facet/range/to_range.rb +36 -1
- data/lib/facet/range/umbrella.rb +67 -1
- data/lib/facet/range/within.rb +44 -1
- data/lib/facet/regexp.rb +3 -1
- data/lib/facet/regexp/arity.rb +41 -1
- data/lib/facet/regexp/to_re.rb +38 -1
- data/lib/facet/regexp/to_regexp.rb +36 -1
- data/lib/facet/string.rb +86 -1
- data/lib/facet/string/align_center.rb +87 -1
- data/lib/facet/string/align_left.rb +2 -1
- data/lib/facet/string/align_right.rb +2 -1
- data/lib/facet/string/at.rb +8 -1
- data/lib/facet/string/at_rand.rb +65 -1
- data/lib/facet/string/basename.rb +48 -1
- data/lib/facet/string/blank.rb +36 -1
- data/lib/facet/string/bracket.rb +70 -1
- data/lib/facet/string/brief.rb +33 -1
- data/lib/facet/string/bytes.rb +19 -1
- data/lib/facet/string/camelcase.rb +58 -1
- data/lib/facet/string/camelize.rb +35 -1
- data/lib/facet/string/capitalized.rb +38 -1
- data/lib/facet/string/chars.rb +34 -1
- data/lib/facet/string/cmp.rb +43 -1
- data/lib/facet/string/demodulize.rb +40 -1
- data/lib/facet/string/dequote.rb +29 -1
- data/lib/facet/string/downcase.rb +37 -1
- data/lib/facet/string/dresner.rb +49 -1
- data/lib/facet/string/each_char.rb +35 -1
- data/lib/facet/string/each_word.rb +50 -1
- data/lib/facet/string/ends_with.rb +2 -1
- data/lib/facet/string/first.rb +94 -1
- data/lib/facet/string/first_char.rb +20 -1
- data/lib/facet/string/fold.rb +67 -1
- data/lib/facet/string/format.rb +17 -1
- data/lib/facet/string/frequency.rb +39 -1
- data/lib/facet/string/humanize.rb +31 -1
- data/lib/facet/string/indent.rb +68 -1
- data/lib/facet/string/index_all.rb +40 -1
- data/lib/facet/string/last.rb +94 -1
- data/lib/facet/string/last_char.rb +22 -1
- data/lib/facet/string/line_wrap.rb +77 -1
- data/lib/facet/string/lines.rb +33 -1
- data/lib/facet/string/lowercase.rb +32 -1
- data/lib/facet/string/margin.rb +138 -1
- data/lib/facet/string/mscan.rb +42 -1
- data/lib/facet/string/natcmp.rb +108 -1
- data/lib/facet/string/nchar.rb +45 -1
- data/lib/facet/string/ordinal.rb +16 -1
- data/lib/facet/string/plural.rb +2 -1
- data/lib/facet/string/pop.rb +54 -1
- data/lib/facet/string/probability.rb +34 -1
- data/lib/facet/string/pull.rb +17 -1
- data/lib/facet/string/push.rb +44 -1
- data/lib/facet/string/quote.rb +68 -1
- data/lib/facet/string/rand_byte.rb +55 -1
- data/lib/facet/string/rand_index.rb +29 -1
- data/lib/facet/string/range.rb +37 -1
- data/lib/facet/string/range_all.rb +48 -1
- data/lib/facet/string/range_of_line.rb +42 -1
- data/lib/facet/string/regesc.rb +32 -0
- data/lib/facet/string/self/format.rb +17 -1
- data/lib/facet/string/self/interpolate.rb +31 -1
- data/lib/facet/string/self/patterns.rb +51 -1
- data/lib/facet/string/self/rand_letter.rb +34 -1
- data/lib/facet/string/self/random.rb +36 -1
- data/lib/facet/string/shatter.rb +45 -1
- data/lib/facet/string/shift.rb +42 -1
- data/lib/facet/string/shuffle.rb +42 -1
- data/lib/facet/string/similarity.rb +108 -1
- data/lib/facet/string/singular.rb +117 -1
- data/lib/facet/string/slap.rb +44 -1
- data/lib/facet/string/soundex.rb +102 -1
- data/lib/facet/string/starts_with.rb +24 -1
- data/lib/facet/string/succ.rb +38 -1
- data/lib/facet/string/tab.rb +2 -1
- data/lib/facet/string/tabto.rb +2 -1
- data/lib/facet/string/to_a.rb +35 -1
- data/lib/facet/string/to_arr.rb +55 -1
- data/lib/facet/string/to_b.rb +64 -1
- data/lib/facet/string/to_const.rb +39 -1
- data/lib/facet/string/to_date.rb +35 -1
- data/lib/facet/string/to_proc.rb +54 -1
- data/lib/facet/string/to_re.rb +46 -1
- data/lib/facet/string/to_rx.rb +2 -0
- data/lib/facet/string/to_time.rb +34 -1
- data/lib/facet/string/unbracket.rb +46 -1
- data/lib/facet/string/underscore.rb +18 -1
- data/lib/facet/string/unix_crypt.rb +41 -1
- data/lib/facet/string/unpack.rb +45 -1
- data/lib/facet/string/unshift.rb +42 -1
- data/lib/facet/string/upcase.rb +45 -1
- data/lib/facet/string/uppercase.rb +2 -1
- data/lib/facet/string/whitespace.rb +27 -1
- data/lib/facet/string/word_filter.rb +61 -1
- data/lib/facet/string/word_wrap.rb +90 -1
- data/lib/facet/string/words.rb +45 -1
- data/lib/facet/symbol.rb +13 -1
- data/lib/facet/symbol/camelcase.rb +42 -1
- data/lib/facet/symbol/camelize.rb +33 -1
- data/lib/facet/symbol/capitalize.rb +31 -1
- data/lib/facet/symbol/capitalized.rb +33 -1
- data/lib/facet/symbol/downcase.rb +36 -1
- data/lib/facet/symbol/not.rb +40 -1
- data/lib/facet/symbol/pad.rb +43 -1
- data/lib/facet/symbol/succ.rb +42 -1
- data/lib/facet/symbol/to_const.rb +40 -1
- data/lib/facet/symbol/to_proc.rb +45 -1
- data/lib/facet/symbol/to_str.rb +39 -1
- data/lib/facet/symbol/underscore.rb +32 -1
- data/lib/facet/symbol/upcase.rb +37 -1
- data/lib/facet/time.rb +7 -1
- data/lib/facet/time/change.rb +51 -1
- data/lib/facet/time/elapse.rb +41 -1
- data/lib/facet/time/self/days_extrema.rb +22 -1
- data/lib/facet/time/stamp.rb +47 -1
- data/lib/facet/time/to_date.rb +37 -1
- data/lib/facet/time/to_s.rb +33 -1
- data/lib/facet/time/to_time.rb +36 -1
- data/lib/facet/unboundmethod.rb +1 -1
- data/lib/facet/unboundmethod/name.rb +8 -1
- data/lib/facets.rb +135 -154
- data/lib/facets/english/bytes.rb +212 -0
- data/lib/facets/english/multipliers.rb +192 -0
- data/lib/facets/english/ormsupport.rb +233 -0
- data/lib/facets/english/time.rb +327 -0
- data/lib/facets/group/inflect.rb +71 -0
- data/lib/facets/group/nilasemptiness.rb +34 -0
- data/lib/facets/group/random.rb +21 -0
- data/lib/facets/group/stringasarray.rb +16 -0
- data/lib/facets/method/README +1 -0
- data/lib/facets/support/functor.rb +49 -0
- data/test/lib/facet/array/test_at_rand.rb +34 -0
- data/test/lib/facet/array/test_delete_unless.rb +28 -0
- data/test/lib/facet/array/test_delete_values.rb +28 -0
- data/test/lib/facet/array/test_delete_values_at.rb +31 -0
- data/test/lib/facet/array/test_first.rb +46 -0
- data/test/lib/facet/array/test_head.rb +42 -0
- data/test/lib/facet/array/test_last_index.rb +26 -0
- data/test/lib/facet/array/test_merge.rb +35 -0
- data/test/lib/facet/array/test_mid.rb +33 -0
- data/test/lib/facet/array/test_middle.rb +29 -0
- data/test/lib/facet/array/test_op_fetch.rb +27 -0
- data/test/lib/facet/array/test_op_store.rb +30 -0
- data/test/lib/facet/array/test_pick.rb +40 -0
- data/test/lib/facet/array/test_pos.rb +28 -0
- data/test/lib/facet/array/test_pull.rb +28 -0
- data/test/lib/facet/array/test_rand_index.rb +29 -0
- data/test/lib/facet/array/test_rand_subset.rb +29 -0
- data/test/lib/facet/array/test_range.rb +32 -0
- data/test/lib/facet/array/test_rotate.rb +36 -0
- data/test/lib/facet/array/test_select.rb +28 -0
- data/test/lib/facet/array/test_shuffle.rb +35 -0
- data/test/lib/facet/array/test_slap.rb +28 -0
- data/test/lib/facet/array/test_thru.rb +27 -0
- data/test/lib/facet/array/test_to_b.rb +27 -0
- data/test/lib/facet/array/test_to_h.rb +33 -0
- data/test/lib/facet/array/test_to_hash.rb +27 -0
- data/test/lib/facet/binding/self/test_of_caller.rb +35 -0
- data/test/lib/facet/binding/test___LINE__.rb +43 -0
- data/test/lib/facet/binding/test_call_stack.rb +34 -0
- data/test/lib/facet/binding/test_called.rb +30 -0
- data/test/lib/facet/binding/test_caller.rb +35 -0
- data/test/lib/facet/binding/test_defined.rb +34 -0
- data/test/lib/facet/binding/test_eval.rb +34 -0
- data/test/lib/facet/binding/test_local_variables.rb +34 -0
- data/test/lib/facet/binding/test_method_name.rb +34 -0
- data/test/lib/facet/binding/test_op_fetch.rb +34 -0
- data/test/lib/facet/binding/test_op_store.rb +35 -0
- data/test/lib/facet/binding/test_self.rb +34 -0
- data/test/lib/facet/class/test_descendents.rb +30 -0
- data/test/lib/facet/class/test_remove_descendents.rb +32 -0
- data/test/lib/facet/comparable/test_at_least.rb +34 -0
- data/test/lib/facet/comparable/test_clip.rb +44 -0
- data/test/lib/facet/comparable/test_cmp.rb +28 -0
- data/test/lib/facet/continuation/self/test_create.rb +26 -0
- data/test/lib/facet/date/test_days_in_month.rb +30 -0
- data/test/lib/facet/date/test_days_of_month.rb +30 -0
- data/test/lib/facet/date/test_stamp.rb +38 -0
- data/test/lib/facet/date/test_to_date.rb +30 -0
- data/test/lib/facet/date/test_to_s.rb +30 -0
- data/test/lib/facet/date/test_to_time.rb +30 -0
- data/test/lib/facet/dir/self/test_ancestor.rb +26 -0
- data/test/lib/facet/dir/self/test_ascend.rb +41 -0
- data/test/lib/facet/dir/self/test_ls_r.rb +52 -0
- data/test/lib/facet/enumerable/self/test_combinations.rb +43 -0
- data/test/lib/facet/enumerable/self/test_cross.rb +31 -0
- data/test/lib/facet/enumerable/test_collect_with_index.rb +27 -0
- data/test/lib/facet/enumerable/test_commonality.rb +31 -0
- data/test/lib/facet/enumerable/test_compact_collect.rb +27 -0
- data/test/lib/facet/enumerable/test_cross.rb +30 -0
- data/test/lib/facet/enumerable/test_each_combination.rb +29 -0
- data/test/lib/facet/enumerable/test_each_pair.rb +29 -0
- data/test/lib/facet/enumerable/test_each_slice.rb +74 -0
- data/test/lib/facet/enumerable/test_each_unique_pair.rb +29 -0
- data/test/lib/facet/enumerable/test_entropy.rb +26 -0
- data/test/lib/facet/enumerable/test_every.rb +35 -0
- data/test/lib/facet/enumerable/test_ew.rb +31 -0
- data/test/lib/facet/enumerable/test_filter_collect.rb +31 -0
- data/test/lib/facet/enumerable/test_find_collisions.rb +30 -0
- data/test/lib/facet/enumerable/test_frequency.rb +27 -0
- data/test/lib/facet/enumerable/test_graph.rb +30 -0
- data/test/lib/facet/enumerable/test_ideal_entropy.rb +27 -0
- data/test/lib/facet/enumerable/test_none.rb +33 -0
- data/test/lib/facet/enumerable/test_occur.rb +30 -0
- data/test/lib/facet/enumerable/test_one.rb +35 -0
- data/test/lib/facet/enumerable/test_op_pow.rb +27 -0
- data/test/lib/facet/enumerable/test_partition_by.rb +31 -0
- data/test/lib/facet/enumerable/test_permute.rb +29 -0
- data/test/lib/facet/enumerable/test_probability.rb +27 -0
- data/test/lib/facet/enumerable/test_to_h.rb +27 -0
- data/test/lib/facet/enumerable/test_uniq_by.rb +28 -0
- data/test/lib/facet/file/self/test_create.rb +39 -0
- data/test/lib/facet/file/self/test_open_as_string.rb +40 -0
- data/test/lib/facet/file/self/test_read_list.rb +37 -0
- data/test/lib/facet/file/self/test_sanitize.rb +46 -0
- data/test/lib/facet/file/self/test_split_all.rb +27 -0
- data/test/lib/facet/fileutils/test_slice.rb +96 -0
- data/test/lib/facet/fileutils/test_wc.rb +68 -0
- data/test/lib/facet/fileutils/test_which.rb +61 -0
- data/test/lib/facet/float/test_approx.rb +28 -0
- data/test/lib/facet/float/test_round_at.rb +46 -0
- data/test/lib/facet/float/test_round_to.rb +46 -0
- data/test/lib/facet/hash/self/test_zipnew.rb +28 -0
- data/test/lib/facet/hash/test_alias.rb +31 -0
- data/test/lib/facet/hash/test_assert_has_keys.rb +27 -0
- data/test/lib/facet/hash/test_assert_has_only_keys.rb +27 -0
- data/test/lib/facet/hash/test_at.rb +28 -0
- data/test/lib/facet/hash/test_collate.rb +35 -0
- data/test/lib/facet/hash/test_each.rb +36 -0
- data/test/lib/facet/hash/test_each_with_index.rb +29 -0
- data/test/lib/facet/hash/test_each_with_key.rb +29 -0
- data/test/lib/facet/hash/test_graph.rb +28 -0
- data/test/lib/facet/hash/test_has_keys.rb +27 -0
- data/test/lib/facet/hash/test_has_only_keys.rb +27 -0
- data/test/lib/facet/hash/test_inverse.rb +28 -0
- data/test/lib/facet/hash/test_keys_to_s.rb +34 -0
- data/test/lib/facet/hash/test_keys_to_sym.rb +34 -0
- data/test/lib/facet/hash/test_op_fetch.rb +111 -0
- data/test/lib/facet/hash/test_op_lshift.rb +29 -0
- data/test/lib/facet/hash/test_rand_key.rb +27 -0
- data/test/lib/facet/hash/test_rand_pair.rb +27 -0
- data/test/lib/facet/hash/test_rand_value.rb +27 -0
- data/test/lib/facet/hash/test_replace_each.rb +29 -0
- data/test/lib/facet/hash/test_shuffle.rb +32 -0
- data/test/lib/facet/hash/test_slice.rb +27 -0
- data/test/lib/facet/hash/test_swap.rb +27 -0
- data/test/lib/facet/hash/test_swapkey.rb +29 -0
- data/test/lib/facet/hash/test_to_h.rb +27 -0
- data/test/lib/facet/hash/test_to_ostruct.rb +30 -0
- data/test/lib/facet/hash/test_to_ostruct_recurse.rb +30 -0
- data/test/lib/facet/hash/test_traverse.rb +37 -0
- data/test/lib/facet/hash/test_update_each.rb +29 -0
- data/test/lib/facet/hash/test_update_keys.rb +28 -0
- data/test/lib/facet/hash/test_update_values.rb +28 -0
- data/test/lib/facet/hash/test_weave.rb +29 -0
- data/test/lib/facet/integer/test_factorial.rb +30 -0
- data/test/lib/facet/integer/test_multiple.rb +43 -0
- data/test/lib/facet/integer/test_ordinal.rb +29 -0
- data/test/lib/facet/integer/test_times_collect.rb +28 -0
- data/test/lib/facet/kernel/test___class__.rb +26 -0
- data/test/lib/facet/kernel/test_as.rb +42 -0
- data/test/lib/facet/kernel/test_assign_from.rb +31 -0
- data/test/lib/facet/kernel/test_assign_with.rb +31 -0
- data/test/lib/facet/kernel/test_bool.rb +41 -0
- data/test/lib/facet/kernel/test_bug.rb +26 -0
- data/test/lib/facet/kernel/test_call_stack.rb +26 -0
- data/test/lib/facet/kernel/test_called.rb +26 -0
- data/test/lib/facet/kernel/test_constant.rb +33 -0
- data/test/lib/facet/kernel/test_copy.rb +40 -0
- data/test/lib/facet/kernel/test_deep_copy.rb +40 -0
- data/test/lib/facet/kernel/test_demo.rb +28 -0
- data/test/lib/facet/kernel/test_fn.rb +26 -0
- data/test/lib/facet/kernel/test_generate_method_name.rb +26 -0
- data/test/lib/facet/kernel/test_get_by_id.rb +28 -0
- data/test/lib/facet/kernel/test_here.rb +26 -0
- data/test/lib/facet/kernel/test_in.rb +27 -0
- data/test/lib/facet/kernel/test_maybe.rb +26 -0
- data/test/lib/facet/kernel/test_metaclass.rb +34 -0
- data/test/lib/facet/kernel/test_method.rb +32 -0
- data/test/lib/facet/kernel/test_method_name.rb +31 -0
- data/test/lib/facet/kernel/test_methods.rb +50 -0
- data/test/lib/facet/kernel/test_new.rb +30 -0
- data/test/lib/facet/kernel/test_object_class.rb +26 -0
- data/test/lib/facet/kernel/test_object_hexid.rb +27 -0
- data/test/lib/facet/kernel/test_require_all.rb +26 -0
- data/test/lib/facet/kernel/test_require_esc.rb +27 -0
- data/test/lib/facet/kernel/test_require_facet.rb +27 -0
- data/test/lib/facet/kernel/test_resc.rb +27 -0
- data/test/lib/facet/kernel/test_returning.rb +30 -0
- data/test/lib/facet/kernel/test_send_as.rb +26 -0
- data/test/lib/facet/kernel/test_set_from.rb +33 -0
- data/test/lib/facet/kernel/test_set_with.rb +33 -0
- data/test/lib/facet/kernel/test_silently.rb +28 -0
- data/test/lib/facet/kernel/test_singleton.rb +40 -0
- data/test/lib/facet/kernel/test_superior.rb +30 -0
- data/test/lib/facet/kernel/test_supermethod.rb +33 -0
- data/test/lib/facet/kernel/test_this.rb +26 -0
- data/test/lib/facet/kernel/test_to_b.rb +28 -0
- data/test/lib/facet/kernel/test_to_bool.rb +28 -0
- data/test/lib/facet/kernel/test_uri.rb +30 -0
- data/test/lib/facet/kernel/test_val.rb +43 -0
- data/test/lib/facet/kernel/test_with_accessor.rb +51 -0
- data/test/lib/facet/matchdata/test_match.rb +29 -0
- data/test/lib/facet/matchdata/test_matchtree.rb +32 -0
- data/test/lib/facet/module/test_abstract.rb +36 -0
- data/test/lib/facet/module/test_alias_module_function.rb +34 -0
- data/test/lib/facet/module/test_ancestor.rb +26 -0
- data/test/lib/facet/module/test_basename.rb +26 -0
- data/test/lib/facet/module/test_by_name.rb +29 -0
- data/test/lib/facet/module/test_cattr_accessor.rb +55 -0
- data/test/lib/facet/module/test_clone_using.rb +55 -0
- data/test/lib/facet/module/test_dirname.rb +26 -0
- data/test/lib/facet/module/test_equate_on.rb +37 -0
- data/test/lib/facet/module/test_generate_instance_method_name.rb +33 -0
- data/test/lib/facet/module/test_include_as.rb +35 -0
- data/test/lib/facet/module/test_initializer.rb +32 -0
- data/test/lib/facet/module/test_instance_methods.rb +59 -0
- data/test/lib/facet/module/test_integrate.rb +35 -0
- data/test/lib/facet/module/test_memoize.rb +50 -0
- data/test/lib/facet/module/test_modspace.rb +27 -0
- data/test/lib/facet/module/test_namespace.rb +33 -0
- data/test/lib/facet/module/test_nesting.rb +36 -0
- data/test/lib/facet/module/test_redef.rb +30 -0
- data/test/lib/facet/module/test_redefine_method.rb +30 -0
- data/test/lib/facet/module/test_redirect.rb +30 -0
- data/test/lib/facet/module/test_redirect_method.rb +30 -0
- data/test/lib/facet/module/test_remove.rb +30 -0
- data/test/lib/facet/module/test_rename.rb +31 -0
- data/test/lib/facet/module/test_rename_method.rb +31 -0
- data/test/lib/facet/module/test_revisal.rb +35 -0
- data/test/lib/facet/module/test_shadow_method.rb +30 -0
- data/test/lib/facet/module/test_sort_on.rb +42 -0
- data/test/lib/facet/module/test_undef.rb +30 -0
- data/test/lib/facet/module/test_wrap.rb +30 -0
- data/test/lib/facet/module/test_wrap_method.rb +30 -0
- data/test/lib/facet/nilclass/test_empty.rb +26 -0
- data/test/lib/facet/nilclass/test_include.rb +26 -0
- data/test/lib/facet/nilclass/test_op_fetch.rb +28 -0
- data/test/lib/facet/nilclass/test_size.rb +30 -0
- data/test/lib/facet/nilclass/test_to_f.rb +26 -0
- data/test/lib/facet/nilclass/test_to_h.rb +26 -0
- data/test/lib/facet/numeric/test_ceil_multiple.rb +31 -0
- data/test/lib/facet/numeric/test_succ.rb +40 -0
- data/test/lib/facet/numeric/test_to_b.rb +27 -0
- data/test/lib/facet/ostruct/test___merge__.rb +38 -0
- data/test/lib/facet/ostruct/test___update__.rb +29 -0
- data/test/lib/facet/ostruct/test_op_fetch.rb +27 -0
- data/test/lib/facet/ostruct/test_op_store.rb +28 -0
- data/test/lib/facet/proc/test_compose.rb +36 -0
- data/test/lib/facet/proc/test_to_method.rb +31 -0
- data/test/lib/facet/range/test_to_r.rb +27 -0
- data/test/lib/facet/range/test_to_range.rb +27 -0
- data/test/lib/facet/range/test_umbrella.rb +34 -0
- data/test/lib/facet/range/test_within.rb +29 -0
- data/test/lib/facet/regexp/test_arity.rb +33 -0
- data/test/lib/facet/regexp/test_to_re.rb +27 -0
- data/test/lib/facet/regexp/test_to_regexp.rb +27 -0
- data/test/lib/facet/string/self/test_interpolate.rb +27 -0
- data/test/lib/facet/string/self/test_patterns.rb +28 -0
- data/test/lib/facet/string/self/test_rand_letter.rb +26 -0
- data/test/lib/facet/string/test_align_center.rb +34 -0
- data/test/lib/facet/string/test_at_rand.rb +35 -0
- data/test/lib/facet/string/test_basename.rb +41 -0
- data/test/lib/facet/string/test_blank.rb +27 -0
- data/test/lib/facet/string/test_bracket.rb +49 -0
- data/test/lib/facet/string/test_camelcase.rb +39 -0
- data/test/lib/facet/string/test_camelize.rb +26 -0
- data/test/lib/facet/string/test_capitalized.rb +26 -0
- data/test/lib/facet/string/test_chars.rb +27 -0
- data/test/lib/facet/string/test_cmp.rb +30 -0
- data/test/lib/facet/string/test_demodulize.rb +38 -0
- data/test/lib/facet/string/test_downcase.rb +26 -0
- data/test/lib/facet/string/test_dresner.rb +32 -0
- data/test/lib/facet/string/test_each_char.rb +29 -0
- data/test/lib/facet/string/test_each_word.rb +29 -0
- data/test/lib/facet/string/test_first.rb +43 -0
- data/test/lib/facet/string/test_fold.rb +34 -0
- data/test/lib/facet/string/test_frequency.rb +28 -0
- data/test/lib/facet/string/test_humanize.rb +26 -0
- data/test/lib/facet/string/test_indent.rb +40 -0
- data/test/lib/facet/string/test_index_all.rb +26 -0
- data/test/lib/facet/string/test_last.rb +46 -0
- data/test/lib/facet/string/test_line_wrap.rb +27 -0
- data/test/lib/facet/string/test_lines.rb +26 -0
- data/test/lib/facet/string/test_lowercase.rb +26 -0
- data/test/lib/facet/string/test_margin.rb +117 -0
- data/test/lib/facet/string/test_mscan.rb +30 -0
- data/test/lib/facet/string/test_natcmp.rb +30 -0
- data/test/lib/facet/string/test_nchar.rb +29 -0
- data/test/lib/facet/string/test_pop.rb +47 -0
- data/test/lib/facet/string/test_probability.rb +28 -0
- data/test/lib/facet/string/test_push.rb +40 -0
- data/test/lib/facet/string/test_quote.rb +49 -0
- data/test/lib/facet/string/test_rand_byte.rb +35 -0
- data/test/lib/facet/string/test_rand_index.rb +26 -0
- data/test/lib/facet/string/test_range.rb +27 -0
- data/test/lib/facet/string/test_range_all.rb +27 -0
- data/test/lib/facet/string/test_range_of_line.rb +28 -0
- data/test/lib/facet/string/test_regesc.rb +28 -0
- data/test/lib/facet/string/test_shatter.rb +29 -0
- data/test/lib/facet/string/test_shift.rb +40 -0
- data/test/lib/facet/string/test_shuffle.rb +27 -0
- data/test/lib/facet/string/test_similarity.rb +26 -0
- data/test/lib/facet/string/test_singular.rb +32 -0
- data/test/lib/facet/string/test_slap.rb +40 -0
- data/test/lib/facet/string/test_soundex.rb +41 -0
- data/test/lib/facet/string/test_succ.rb +29 -0
- data/test/lib/facet/string/test_to_a.rb +27 -0
- data/test/lib/facet/string/test_to_arr.rb +26 -0
- data/test/lib/facet/string/test_to_b.rb +41 -0
- data/test/lib/facet/string/test_to_const.rb +28 -0
- data/test/lib/facet/string/test_to_date.rb +30 -0
- data/test/lib/facet/string/test_to_proc.rb +33 -0
- data/test/lib/facet/string/test_to_re.rb +28 -0
- data/test/lib/facet/string/test_to_time.rb +30 -0
- data/test/lib/facet/string/test_unix_crypt.rb +30 -0
- data/test/lib/facet/string/test_unpack.rb +34 -0
- data/test/lib/facet/string/test_unshift.rb +39 -0
- data/test/lib/facet/string/test_upcase.rb +30 -0
- data/test/lib/facet/string/test_whitespace.rb +27 -0
- data/test/lib/facet/string/test_word_filter.rb +34 -0
- data/test/lib/facet/string/test_word_wrap.rb +51 -0
- data/test/lib/facet/string/test_words.rb +37 -0
- data/test/lib/facet/symbol/test_camelcase.rb +26 -0
- data/test/lib/facet/symbol/test_camelize.rb +27 -0
- data/test/lib/facet/symbol/test_capitalize.rb +26 -0
- data/test/lib/facet/symbol/test_capitalized.rb +27 -0
- data/test/lib/facet/symbol/test_downcase.rb +27 -0
- data/test/lib/facet/symbol/test_not.rb +29 -0
- data/test/lib/facet/symbol/test_pad.rb +27 -0
- data/test/lib/facet/symbol/test_succ.rb +28 -0
- data/test/lib/facet/symbol/test_to_const.rb +28 -0
- data/test/lib/facet/symbol/test_to_proc.rb +27 -0
- data/test/lib/facet/symbol/test_to_str.rb +28 -0
- data/test/lib/facet/symbol/test_underscore.rb +26 -0
- data/test/lib/facet/symbol/test_upcase.rb +27 -0
- data/test/lib/facet/time/test_change.rb +33 -0
- data/test/lib/facet/time/test_elapse.rb +27 -0
- data/test/lib/facet/time/test_stamp.rb +31 -0
- data/test/lib/facet/time/test_to_date.rb +31 -0
- data/test/lib/facet/time/test_to_s.rb +31 -0
- data/test/lib/facet/time/test_to_time.rb +31 -0
- data/test/lib/facets/english/test_bytes.rb +84 -0
- data/test/lib/facets/english/test_multipliers.rb +114 -0
- data/test/lib/facets/english/test_time.rb +73 -0
- metadata +895 -1625
- data/ANN +0 -59
- data/LICENSE/COPYING-GPL +0 -341
- data/LICENSE/LICENSE-ART +0 -50
- data/LICENSE/LICENSE-LGPL +0 -175
- data/LICENSE/LICENSE-MIT +0 -8
- data/LICENSE/LICENSE-RUBY +0 -60
- data/bench/b_calls.rb +0 -74
- data/bench/b_harray.rb +0 -49
- data/bench/b_pathname.rb +0 -24
- data/bench/b_range.rb +0 -64
- data/bench/return-bench.rb +0 -56
- data/bin/uri +0 -6
- data/conf/facets/extra +0 -7
- data/data/facets/units/binary/base.yaml +0 -12
- data/data/facets/units/binary/extra.yaml +0 -8
- data/data/facets/units/cex.yaml +0 -7
- data/data/facets/units/currency/base.yaml +0 -268
- data/data/facets/units/default.yaml +0 -22
- data/data/facets/units/dump_yaml.rb +0 -309
- data/data/facets/units/si/base.yaml +0 -36
- data/data/facets/units/si/derived.yaml +0 -133
- data/data/facets/units/si/extra.yaml +0 -107
- data/data/facets/units/standard.yaml +0 -5
- data/data/facets/units/uk.yaml +0 -16
- data/data/facets/units/uk/base.yaml +0 -107
- data/data/facets/units/us.yaml +0 -16
- data/data/facets/units/us/base.yaml +0 -112
- data/data/facets/units/xmethods/cached.yaml +0 -83
- data/data/facets/units/xmethods/mapping.yaml +0 -85
- data/demo/ann-demo.rb +0 -22
- data/lib/facet/all.rb +0 -1
- data/lib/facet/annotation.rb +0 -1
- data/lib/facet/ansicolor.rb +0 -1
- data/lib/facet/association.rb +0 -1
- data/lib/facet/base.rb +0 -1
- data/lib/facet/basicobject.rb +0 -1
- data/lib/facet/bbcode.rb +0 -1
- data/lib/facet/binary_multiplier.rb +0 -1
- data/lib/facet/binaryreader.rb +0 -1
- data/lib/facet/blankslate.rb +0 -1
- data/lib/facet/byteorder.rb +0 -1
- data/lib/facet/class_inherit.rb +0 -1
- data/lib/facet/classmethods.rb +0 -1
- data/lib/facet/cloneable.rb +0 -1
- data/lib/facet/constants.rb +0 -1
- data/lib/facet/coroutine.rb +0 -1
- data/lib/facet/crosscase.rb +0 -1
- data/lib/facet/crypt.rb +0 -1
- data/lib/facet/dictionary.rb +0 -1
- data/lib/facet/downloader.rb +0 -1
- data/lib/facet/dynamod.rb +0 -1
- data/lib/facet/enumerable_args.rb +0 -1
- data/lib/facet/enumtype.rb +0 -1
- data/lib/facet/expirable.rb +0 -1
- data/lib/facet/filelist.rb +0 -1
- data/lib/facet/fixnum_const.rb +0 -1
- data/lib/facet/floatstring.rb +0 -1
- data/lib/facet/functor.rb +0 -1
- data/lib/facet/harray.rb +0 -1
- data/lib/facet/heap.rb +0 -1
- data/lib/facet/infinity.rb +0 -1
- data/lib/facet/inflect.rb +0 -1
- data/lib/facet/inheritor.rb +0 -1
- data/lib/facet/interval.rb +0 -1
- data/lib/facet/ioreactor.rb +0 -1
- data/lib/facet/ioredirect.rb +0 -1
- data/lib/facet/lisp.rb +0 -1
- data/lib/facet/lru_cache.rb +0 -1
- data/lib/facet/methodprobe.rb +0 -1
- data/lib/facet/mock.rb +0 -1
- data/lib/facet/multiplier.rb +0 -1
- data/lib/facet/multiton.rb +0 -1
- data/lib/facet/nack.rb +0 -1
- data/lib/facet/nil_as_emptiness.rb +0 -1
- data/lib/facet/nilcomparable.rb +0 -1
- data/lib/facet/notcopyable.rb +0 -1
- data/lib/facet/null.rb +0 -1
- data/lib/facet/ohash.rb +0 -1
- data/lib/facet/one.rb +0 -1
- data/lib/facet/openobject.rb +0 -1
- data/lib/facet/orm_support.rb +0 -1
- data/lib/facet/ostructable.rb +0 -1
- data/lib/facet/package.rb +0 -1
- data/lib/facet/pool.rb +0 -1
- data/lib/facet/preinitialize.rb +0 -1
- data/lib/facet/progressbar.rb +0 -1
- data/lib/facet/promoteself.rb +0 -1
- data/lib/facet/proxy.rb +0 -1
- data/lib/facet/quicktest.rb +0 -1
- data/lib/facet/random.rb +0 -1
- data/lib/facet/reference.rb +0 -1
- data/lib/facet/semaphore.rb +0 -1
- data/lib/facet/shellcommand.rb +0 -1
- data/lib/facet/snapshot.rb +0 -1
- data/lib/facet/stateparser.rb +0 -1
- data/lib/facet/statichash.rb +0 -1
- data/lib/facet/string_as_array.rb +0 -1
- data/lib/facet/superstruct.rb +0 -1
- data/lib/facet/syncarray.rb +0 -1
- data/lib/facet/synchash.rb +0 -1
- data/lib/facet/tagiter.rb +0 -1
- data/lib/facet/template.rb +0 -1
- data/lib/facet/test.rb +0 -1
- data/lib/facet/time_in_english.rb +0 -1
- data/lib/facet/timer.rb +0 -1
- data/lib/facet/tracepoint.rb +0 -1
- data/lib/facet/tuple.rb +0 -1
- data/lib/facet/uninheritable.rb +0 -1
- data/lib/facet/units.rb +0 -1
- data/lib/facet/version.rb +0 -1
- data/lib/facet/yamlstruct.rb +0 -1
- data/lib/mega/annotation.rb +0 -568
- data/lib/mega/ansicolor.rb +0 -193
- data/lib/mega/association.rb +0 -174
- data/lib/mega/basicobject.rb +0 -108
- data/lib/mega/bbcode.rb +0 -410
- data/lib/mega/binary_multiplier.rb +0 -250
- data/lib/mega/binaryreader.rb +0 -210
- data/lib/mega/blankslate.rb +0 -3
- data/lib/mega/byteorder.rb +0 -119
- data/lib/mega/class_inherit.rb +0 -208
- data/lib/mega/classmethods.rb +0 -111
- data/lib/mega/cloneable.rb +0 -52
- data/lib/mega/constants.rb +0 -308
- data/lib/mega/coroutine.rb +0 -173
- data/lib/mega/crosscase.rb +0 -347
- data/lib/mega/crypt.rb +0 -167
- data/lib/mega/dictionary.rb +0 -340
- data/lib/mega/downloader.rb +0 -240
- data/lib/mega/dynamod.rb +0 -249
- data/lib/mega/enumerable_args.rb +0 -218
- data/lib/mega/enumtype.rb +0 -105
- data/lib/mega/expirable.rb +0 -88
- data/lib/mega/filelist.rb +0 -478
- data/lib/mega/fixnum_const.rb +0 -62
- data/lib/mega/floatstring.rb +0 -179
- data/lib/mega/functor.rb +0 -98
- data/lib/mega/harray.rb +0 -817
- data/lib/mega/heap.rb +0 -226
- data/lib/mega/infinity.rb +0 -123
- data/lib/mega/inheritor.rb +0 -236
- data/lib/mega/interval.rb +0 -426
- data/lib/mega/ioreactor.rb +0 -671
- data/lib/mega/ioredirect.rb +0 -130
- data/lib/mega/lisp.rb +0 -387
- data/lib/mega/lru_cache.rb +0 -184
- data/lib/mega/mock.rb +0 -224
- data/lib/mega/multiplier.rb +0 -180
- data/lib/mega/multiton.rb +0 -360
- data/lib/mega/nack.rb +0 -162
- data/lib/mega/nilcomparable.rb +0 -128
- data/lib/mega/notcopyable.rb +0 -146
- data/lib/mega/null.rb +0 -40
- data/lib/mega/ohash.rb +0 -3
- data/lib/mega/one.rb +0 -72
- data/lib/mega/openobject.rb +0 -220
- data/lib/mega/orm_support.rb +0 -233
- data/lib/mega/ostructable.rb +0 -212
- data/lib/mega/package.rb +0 -58
- data/lib/mega/pool.rb +0 -98
- data/lib/mega/preinitialize.rb +0 -152
- data/lib/mega/progressbar.rb +0 -214
- data/lib/mega/promoteself.rb +0 -104
- data/lib/mega/proxy.rb +0 -13
- data/lib/mega/reference.rb +0 -83
- data/lib/mega/semaphore.rb +0 -106
- data/lib/mega/shellcommand.rb +0 -55
- data/lib/mega/snapshot.rb +0 -190
- data/lib/mega/stateparser.rb +0 -576
- data/lib/mega/statichash.rb +0 -86
- data/lib/mega/superstruct.rb +0 -744
- data/lib/mega/syncarray.rb +0 -118
- data/lib/mega/synchash.rb +0 -173
- data/lib/mega/tagiter.rb +0 -389
- data/lib/mega/template.rb +0 -211
- data/lib/mega/time_in_english.rb +0 -347
- data/lib/mega/timer.rb +0 -293
- data/lib/mega/tracepoint.rb +0 -184
- data/lib/mega/tuple.rb +0 -97
- data/lib/mega/uninheritable.rb +0 -92
- data/lib/mega/units.rb +0 -926
- data/lib/mega/version.rb +0 -245
- data/lib/mega/yamlstruct.rb +0 -16
- data/lib/nano/all.rb +0 -18
- data/lib/nano/array.rb +0 -33
- data/lib/nano/array/at_rand.rb +0 -52
- data/lib/nano/array/body.rb +0 -35
- data/lib/nano/array/delete_unless.rb +0 -35
- data/lib/nano/array/delete_values.rb +0 -38
- data/lib/nano/array/delete_values_at.rb +0 -57
- data/lib/nano/array/each_with_key.rb +0 -9
- data/lib/nano/array/first.rb +0 -53
- data/lib/nano/array/foot.rb +0 -36
- data/lib/nano/array/head.rb +0 -36
- data/lib/nano/array/last.rb +0 -53
- data/lib/nano/array/last_index.rb +0 -35
- data/lib/nano/array/merge.rb +0 -40
- data/lib/nano/array/mid.rb +0 -50
- data/lib/nano/array/middle.rb +0 -45
- data/lib/nano/array/op_fetch.rb +0 -40
- data/lib/nano/array/op_store.rb +0 -47
- data/lib/nano/array/pick.rb +0 -68
- data/lib/nano/array/pos.rb +0 -39
- data/lib/nano/array/pull.rb +0 -37
- data/lib/nano/array/rand_index.rb +0 -30
- data/lib/nano/array/rand_subset.rb +0 -56
- data/lib/nano/array/range.rb +0 -47
- data/lib/nano/array/rotate.rb +0 -67
- data/lib/nano/array/select.rb +0 -37
- data/lib/nano/array/shuffle.rb +0 -66
- data/lib/nano/array/slap.rb +0 -37
- data/lib/nano/array/store.rb +0 -7
- data/lib/nano/array/tail.rb +0 -34
- data/lib/nano/array/thru.rb +0 -38
- data/lib/nano/array/to_b.rb +0 -31
- data/lib/nano/array/to_h.rb +0 -57
- data/lib/nano/array/to_hash.rb +0 -46
- data/lib/nano/array/unzip.rb +0 -20
- data/lib/nano/base.rb +0 -73
- data/lib/nano/binding.rb +0 -14
- data/lib/nano/binding/__DIR__.rb +0 -2
- data/lib/nano/binding/__FILE__.rb +0 -2
- data/lib/nano/binding/__LINE__.rb +0 -58
- data/lib/nano/binding/call_stack.rb +0 -41
- data/lib/nano/binding/called.rb +0 -41
- data/lib/nano/binding/caller.rb +0 -41
- data/lib/nano/binding/defined.rb +0 -40
- data/lib/nano/binding/eval.rb +0 -41
- data/lib/nano/binding/local_variables.rb +0 -44
- data/lib/nano/binding/method_name.rb +0 -47
- data/lib/nano/binding/op_fetch.rb +0 -45
- data/lib/nano/binding/op_store.rb +0 -46
- data/lib/nano/binding/self.rb +0 -41
- data/lib/nano/binding/self/of_caller.rb +0 -122
- data/lib/nano/class.rb +0 -5
- data/lib/nano/class/by_name.rb +0 -1
- data/lib/nano/class/descendents.rb +0 -44
- data/lib/nano/class/remove_descendents.rb +0 -46
- data/lib/nano/class/remove_subclasses.rb +0 -2
- data/lib/nano/class/subclasses.rb +0 -2
- data/lib/nano/comparable.rb +0 -5
- data/lib/nano/comparable/at_least.rb +0 -53
- data/lib/nano/comparable/at_most.rb +0 -2
- data/lib/nano/comparable/cap.rb +0 -2
- data/lib/nano/comparable/clip.rb +0 -72
- data/lib/nano/comparable/cmp.rb +0 -38
- data/lib/nano/continuation.rb +0 -1
- data/lib/nano/continuation/self/create.rb +0 -71
- data/lib/nano/date.rb +0 -0
- data/lib/nano/date/days_in_month.rb +0 -42
- data/lib/nano/date/days_of_month.rb +0 -34
- data/lib/nano/date/stamp.rb +0 -52
- data/lib/nano/date/to_date.rb +0 -36
- data/lib/nano/date/to_s.rb +0 -33
- data/lib/nano/date/to_time.rb +0 -36
- data/lib/nano/dir.rb +0 -4
- data/lib/nano/dir/self/ancestor.rb +0 -33
- data/lib/nano/dir/self/ascend.rb +0 -56
- data/lib/nano/dir/self/ls_r.rb +0 -76
- data/lib/nano/dir/self/recurse.rb +0 -2
- data/lib/nano/enumerable.rb +0 -38
- data/lib/nano/enumerable/collect_with_counter.rb +0 -2
- data/lib/nano/enumerable/collect_with_index.rb +0 -51
- data/lib/nano/enumerable/commonality.rb +0 -63
- data/lib/nano/enumerable/compact_collect.rb +0 -50
- data/lib/nano/enumerable/compact_map.rb +0 -2
- data/lib/nano/enumerable/cross.rb +0 -44
- data/lib/nano/enumerable/each_by.rb +0 -2
- data/lib/nano/enumerable/each_combination.rb +0 -59
- data/lib/nano/enumerable/each_pair.rb +0 -50
- data/lib/nano/enumerable/each_permutation.rb +0 -42
- data/lib/nano/enumerable/each_slice.rb +0 -131
- data/lib/nano/enumerable/each_unique_pair.rb +0 -66
- data/lib/nano/enumerable/each_with_counter.rb +0 -8
- data/lib/nano/enumerable/elementwise.rb +0 -2
- data/lib/nano/enumerable/entropy.rb +0 -52
- data/lib/nano/enumerable/every.rb +0 -61
- data/lib/nano/enumerable/ew.rb +0 -59
- data/lib/nano/enumerable/filter_collect.rb +0 -58
- data/lib/nano/enumerable/filter_map.rb +0 -2
- data/lib/nano/enumerable/find_collisions.rb +0 -41
- data/lib/nano/enumerable/frequency.rb +0 -39
- data/lib/nano/enumerable/graph.rb +0 -59
- data/lib/nano/enumerable/ideal_entropy.rb +0 -49
- data/lib/nano/enumerable/map_with_counter.rb +0 -2
- data/lib/nano/enumerable/map_with_index.rb +0 -2
- data/lib/nano/enumerable/none.rb +0 -56
- data/lib/nano/enumerable/nonuniq.rb +0 -39
- data/lib/nano/enumerable/occur.rb +0 -62
- data/lib/nano/enumerable/one.rb +0 -65
- data/lib/nano/enumerable/op_pow.rb +0 -38
- data/lib/nano/enumerable/partition_by.rb +0 -55
- data/lib/nano/enumerable/probability.rb +0 -59
- data/lib/nano/enumerable/project.rb +0 -11
- data/lib/nano/enumerable/self/combinations.rb +0 -68
- data/lib/nano/enumerable/self/cross.rb +0 -79
- data/lib/nano/enumerable/to_h.rb +0 -50
- data/lib/nano/enumerable/uniq_by.rb +0 -39
- data/lib/nano/enumerable/where.rb +0 -12
- data/lib/nano/file.rb +0 -5
- data/lib/nano/file/self/create.rb +0 -52
- data/lib/nano/file/self/open_as_string.rb +0 -81
- data/lib/nano/file/self/read_list.rb +0 -47
- data/lib/nano/file/self/sanitize.rb +0 -50
- data/lib/nano/file/self/split_all.rb +0 -36
- data/lib/nano/fileutils.rb +0 -0
- data/lib/nano/fileutils/head.rb +0 -2
- data/lib/nano/fileutils/safe_ln.rb +0 -38
- data/lib/nano/fileutils/slice.rb +0 -148
- data/lib/nano/fileutils/split_all.rb +0 -29
- data/lib/nano/fileutils/tail.rb +0 -2
- data/lib/nano/fileutils/wc.rb +0 -128
- data/lib/nano/fileutils/whereis.rb +0 -76
- data/lib/nano/fileutils/which.rb +0 -117
- data/lib/nano/float.rb +0 -3
- data/lib/nano/float/approx.rb +0 -42
- data/lib/nano/float/round_at.rb +0 -72
- data/lib/nano/float/round_to.rb +0 -73
- data/lib/nano/hash.rb +0 -40
- data/lib/nano/hash/alias.rb +0 -54
- data/lib/nano/hash/assert_has_keys.rb +0 -38
- data/lib/nano/hash/assert_has_only_keys.rb +0 -38
- data/lib/nano/hash/at.rb +0 -26
- data/lib/nano/hash/collate.rb +0 -53
- data/lib/nano/hash/delete_unless.rb +0 -15
- data/lib/nano/hash/each.rb +0 -61
- data/lib/nano/hash/each_with_index.rb +0 -35
- data/lib/nano/hash/each_with_key.rb +0 -32
- data/lib/nano/hash/graph.rb +0 -31
- data/lib/nano/hash/has_keys.rb +0 -37
- data/lib/nano/hash/has_only_keys.rb +0 -37
- data/lib/nano/hash/inverse.rb +0 -51
- data/lib/nano/hash/join.rb +0 -19
- data/lib/nano/hash/keys_to_iv.rb +0 -60
- data/lib/nano/hash/keys_to_s.rb +0 -80
- data/lib/nano/hash/keys_to_sym.rb +0 -91
- data/lib/nano/hash/op_fetch.rb +0 -146
- data/lib/nano/hash/op_lshift.rb +0 -28
- data/lib/nano/hash/op_store.rb +0 -2
- data/lib/nano/hash/rand_key.rb +0 -47
- data/lib/nano/hash/rand_pair.rb +0 -50
- data/lib/nano/hash/rand_value.rb +0 -60
- data/lib/nano/hash/replace_each.rb +0 -33
- data/lib/nano/hash/self/zipnew.rb +0 -37
- data/lib/nano/hash/shuffle.rb +0 -53
- data/lib/nano/hash/slice.rb +0 -33
- data/lib/nano/hash/stringify_keys.rb +0 -2
- data/lib/nano/hash/swap.rb +0 -36
- data/lib/nano/hash/swapkey.rb +0 -44
- data/lib/nano/hash/symoblize_keys.rb +0 -2
- data/lib/nano/hash/to_h.rb +0 -35
- data/lib/nano/hash/to_ostruct.rb +0 -40
- data/lib/nano/hash/to_ostruct_recurse.rb +0 -45
- data/lib/nano/hash/traverse.rb +0 -63
- data/lib/nano/hash/update_each.rb +0 -43
- data/lib/nano/hash/update_keys.rb +0 -31
- data/lib/nano/hash/update_values.rb +0 -32
- data/lib/nano/hash/variablize_keys.rb +0 -2
- data/lib/nano/hash/weave.rb +0 -88
- data/lib/nano/inflect.rb +0 -36
- data/lib/nano/integer.rb +0 -8
- data/lib/nano/integer/even.rb +0 -2
- data/lib/nano/integer/fact.rb +0 -2
- data/lib/nano/integer/factorial.rb +0 -47
- data/lib/nano/integer/multiple.rb +0 -69
- data/lib/nano/integer/odd.rb +0 -2
- data/lib/nano/integer/ordinal.rb +0 -41
- data/lib/nano/integer/times_collect.rb +0 -37
- data/lib/nano/integer/times_map.rb +0 -28
- data/lib/nano/kernel.rb +0 -65
- data/lib/nano/kernel/__class__.rb +0 -31
- data/lib/nano/kernel/__meta__.rb +0 -57
- data/lib/nano/kernel/as.rb +0 -87
- data/lib/nano/kernel/assign_from.rb +0 -82
- data/lib/nano/kernel/assign_with.rb +0 -75
- data/lib/nano/kernel/autoreload.rb +0 -46
- data/lib/nano/kernel/autoreload_glob.rb +0 -36
- data/lib/nano/kernel/bool.rb +0 -77
- data/lib/nano/kernel/bug.rb +0 -39
- data/lib/nano/kernel/call_stack.rb +0 -59
- data/lib/nano/kernel/called.rb +0 -40
- data/lib/nano/kernel/complete.rb +0 -6
- data/lib/nano/kernel/constant.rb +0 -52
- data/lib/nano/kernel/copy.rb +0 -48
- data/lib/nano/kernel/deep_copy.rb +0 -49
- data/lib/nano/kernel/demo.rb +0 -46
- data/lib/nano/kernel/eigenclass.rb +0 -17
- data/lib/nano/kernel/false.rb +0 -2
- data/lib/nano/kernel/fn.rb +0 -33
- data/lib/nano/kernel/generate_method_name.rb +0 -39
- data/lib/nano/kernel/get_by_id.rb +0 -33
- data/lib/nano/kernel/here.rb +0 -34
- data/lib/nano/kernel/in.rb +0 -35
- data/lib/nano/kernel/instance_assign.rb +0 -25
- data/lib/nano/kernel/instvar.rb +0 -13
- data/lib/nano/kernel/is.rb +0 -5
- data/lib/nano/kernel/maybe.rb +0 -41
- data/lib/nano/kernel/me.rb +0 -17
- data/lib/nano/kernel/meta.rb +0 -2
- data/lib/nano/kernel/metaclass.rb +0 -42
- data/lib/nano/kernel/method.rb +0 -76
- data/lib/nano/kernel/method_name.rb +0 -49
- data/lib/nano/kernel/methods.rb +0 -79
- data/lib/nano/kernel/nack.rb +0 -12
- data/lib/nano/kernel/new.rb +0 -40
- data/lib/nano/kernel/object_class.rb +0 -31
- data/lib/nano/kernel/object_hexid.rb +0 -35
- data/lib/nano/kernel/op_esc.rb +0 -37
- data/lib/nano/kernel/own.rb +0 -17
- data/lib/nano/kernel/p.rb +0 -12
- data/lib/nano/kernel/require_all.rb +0 -44
- data/lib/nano/kernel/require_esc.rb +0 -42
- data/lib/nano/kernel/require_facet.rb +0 -41
- data/lib/nano/kernel/require_local.rb +0 -25
- data/lib/nano/kernel/resc.rb +0 -32
- data/lib/nano/kernel/returning.rb +0 -49
- data/lib/nano/kernel/send_as.rb +0 -34
- data/lib/nano/kernel/set_from.rb +0 -69
- data/lib/nano/kernel/set_with.rb +0 -74
- data/lib/nano/kernel/silence_warnings.rb +0 -2
- data/lib/nano/kernel/silently.rb +0 -41
- data/lib/nano/kernel/singleton.rb +0 -47
- data/lib/nano/kernel/superior.rb +0 -53
- data/lib/nano/kernel/supermethod.rb +0 -44
- data/lib/nano/kernel/this.rb +0 -33
- data/lib/nano/kernel/to_b.rb +0 -41
- data/lib/nano/kernel/to_bool.rb +0 -47
- data/lib/nano/kernel/true.rb +0 -2
- data/lib/nano/kernel/unuri.rb +0 -2
- data/lib/nano/kernel/uri.rb +0 -38
- data/lib/nano/kernel/val.rb +0 -52
- data/lib/nano/kernel/warn_with_line.rb +0 -30
- data/lib/nano/kernel/with_accessor.rb +0 -94
- data/lib/nano/kernel/with_reader.rb +0 -2
- data/lib/nano/kernel/with_writer.rb +0 -2
- data/lib/nano/logger.rb +0 -0
- data/lib/nano/logger/format.rb +0 -28
- data/lib/nano/logger/format_message.rb +0 -1
- data/lib/nano/matchdata.rb +0 -3
- data/lib/nano/matchdata/match.rb +0 -37
- data/lib/nano/matchdata/matchset.rb +0 -2
- data/lib/nano/matchdata/matchtree.rb +0 -62
- data/lib/nano/module.rb +0 -40
- data/lib/nano/module/abstract.rb +0 -50
- data/lib/nano/module/alias_module_function.rb +0 -57
- data/lib/nano/module/ancestor.rb +0 -38
- data/lib/nano/module/attr.rb +0 -23
- data/lib/nano/module/attr_setter.rb +0 -48
- data/lib/nano/module/attr_tester.rb +0 -56
- data/lib/nano/module/basename.rb +0 -39
- data/lib/nano/module/by_name.rb +0 -68
- data/lib/nano/module/cattr_accessor.rb +0 -141
- data/lib/nano/module/cattr_reader.rb +0 -2
- data/lib/nano/module/cattr_writer.rb +0 -2
- data/lib/nano/module/clone_removing.rb +0 -2
- data/lib/nano/module/clone_renaming.rb +0 -2
- data/lib/nano/module/clone_using.rb +0 -87
- data/lib/nano/module/dirname.rb +0 -42
- data/lib/nano/module/equate_on.rb +0 -70
- data/lib/nano/module/generate_instance_method_name.rb +0 -47
- data/lib/nano/module/include_as.rb +0 -102
- data/lib/nano/module/initializer.rb +0 -65
- data/lib/nano/module/instance_methods.rb +0 -186
- data/lib/nano/module/integrate.rb +0 -48
- data/lib/nano/module/is.rb +0 -34
- data/lib/nano/module/memoize.rb +0 -95
- data/lib/nano/module/modspace.rb +0 -43
- data/lib/nano/module/namespace.rb +0 -61
- data/lib/nano/module/nesting.rb +0 -45
- data/lib/nano/module/redef.rb +0 -31
- data/lib/nano/module/redefine_method.rb +0 -57
- data/lib/nano/module/redirect.rb +0 -30
- data/lib/nano/module/redirect_method.rb +0 -64
- data/lib/nano/module/remove.rb +0 -29
- data/lib/nano/module/rename.rb +0 -31
- data/lib/nano/module/rename_method.rb +0 -38
- data/lib/nano/module/revisal.rb +0 -49
- data/lib/nano/module/shadow_all.rb +0 -17
- data/lib/nano/module/shadow_method.rb +0 -42
- data/lib/nano/module/sort_on.rb +0 -73
- data/lib/nano/module/undef.rb +0 -29
- data/lib/nano/module/wrap.rb +0 -30
- data/lib/nano/module/wrap_method.rb +0 -48
- data/lib/nano/nil_as_emptiness.rb +0 -34
- data/lib/nano/nilclass.rb +0 -7
- data/lib/nano/nilclass/empty.rb +0 -32
- data/lib/nano/nilclass/include.rb +0 -32
- data/lib/nano/nilclass/length.rb +0 -2
- data/lib/nano/nilclass/op_fetch.rb +0 -37
- data/lib/nano/nilclass/size.rb +0 -44
- data/lib/nano/nilclass/to_f.rb +0 -32
- data/lib/nano/nilclass/to_h.rb +0 -33
- data/lib/nano/numeric.rb +0 -5
- data/lib/nano/numeric/ceil_multiple.rb +0 -40
- data/lib/nano/numeric/pred.rb +0 -2
- data/lib/nano/numeric/succ.rb +0 -69
- data/lib/nano/numeric/to_b.rb +0 -38
- data/lib/nano/ostruct.rb +0 -0
- data/lib/nano/ostruct/__merge__.rb +0 -52
- data/lib/nano/ostruct/__table__.rb +0 -17
- data/lib/nano/ostruct/__update__.rb +0 -45
- data/lib/nano/ostruct/op_fetch.rb +0 -40
- data/lib/nano/ostruct/op_store.rb +0 -42
- data/lib/nano/ostruct/to_h.rb +0 -8
- data/lib/nano/pathname.rb +0 -2
- data/lib/nano/pathname/ascend.rb +0 -22
- data/lib/nano/pathname/descend.rb +0 -20
- data/lib/nano/proc.rb +0 -3
- data/lib/nano/proc/compose.rb +0 -62
- data/lib/nano/proc/op_mul.rb +0 -2
- data/lib/nano/proc/to_method.rb +0 -74
- data/lib/nano/random.rb +0 -21
- data/lib/nano/range.rb +0 -4
- data/lib/nano/range/to_r.rb +0 -32
- data/lib/nano/range/to_range.rb +0 -36
- data/lib/nano/range/umbrella.rb +0 -67
- data/lib/nano/range/within.rb +0 -44
- data/lib/nano/regexp.rb +0 -3
- data/lib/nano/regexp/arity.rb +0 -41
- data/lib/nano/regexp/to_re.rb +0 -38
- data/lib/nano/regexp/to_regexp.rb +0 -36
- data/lib/nano/string.rb +0 -86
- data/lib/nano/string/align_center.rb +0 -87
- data/lib/nano/string/align_left.rb +0 -2
- data/lib/nano/string/align_right.rb +0 -2
- data/lib/nano/string/at.rb +0 -8
- data/lib/nano/string/at_rand.rb +0 -65
- data/lib/nano/string/basename.rb +0 -48
- data/lib/nano/string/blank.rb +0 -36
- data/lib/nano/string/bracket.rb +0 -70
- data/lib/nano/string/brief.rb +0 -33
- data/lib/nano/string/bytes.rb +0 -19
- data/lib/nano/string/camelcase.rb +0 -58
- data/lib/nano/string/camelize.rb +0 -35
- data/lib/nano/string/capitalized.rb +0 -38
- data/lib/nano/string/chars.rb +0 -34
- data/lib/nano/string/cmp.rb +0 -43
- data/lib/nano/string/demodulize.rb +0 -40
- data/lib/nano/string/dequote.rb +0 -29
- data/lib/nano/string/downcase.rb +0 -37
- data/lib/nano/string/dresner.rb +0 -49
- data/lib/nano/string/each_char.rb +0 -35
- data/lib/nano/string/each_word.rb +0 -50
- data/lib/nano/string/ends_with.rb +0 -2
- data/lib/nano/string/first.rb +0 -94
- data/lib/nano/string/first_char.rb +0 -20
- data/lib/nano/string/fold.rb +0 -67
- data/lib/nano/string/format.rb +0 -17
- data/lib/nano/string/frequency.rb +0 -39
- data/lib/nano/string/humanize.rb +0 -31
- data/lib/nano/string/indent.rb +0 -68
- data/lib/nano/string/index_all.rb +0 -40
- data/lib/nano/string/last.rb +0 -94
- data/lib/nano/string/last_char.rb +0 -22
- data/lib/nano/string/line_wrap.rb +0 -77
- data/lib/nano/string/lines.rb +0 -33
- data/lib/nano/string/lowercase.rb +0 -32
- data/lib/nano/string/margin.rb +0 -138
- data/lib/nano/string/mscan.rb +0 -42
- data/lib/nano/string/natcmp.rb +0 -108
- data/lib/nano/string/nchar.rb +0 -45
- data/lib/nano/string/ordinal.rb +0 -16
- data/lib/nano/string/plural.rb +0 -2
- data/lib/nano/string/pop.rb +0 -54
- data/lib/nano/string/probability.rb +0 -34
- data/lib/nano/string/pull.rb +0 -17
- data/lib/nano/string/push.rb +0 -44
- data/lib/nano/string/quote.rb +0 -68
- data/lib/nano/string/rand_byte.rb +0 -55
- data/lib/nano/string/rand_index.rb +0 -29
- data/lib/nano/string/range.rb +0 -37
- data/lib/nano/string/range_all.rb +0 -48
- data/lib/nano/string/range_of_line.rb +0 -42
- data/lib/nano/string/self/format.rb +0 -17
- data/lib/nano/string/self/interpolate.rb +0 -31
- data/lib/nano/string/self/patterns.rb +0 -51
- data/lib/nano/string/self/rand_letter.rb +0 -34
- data/lib/nano/string/self/random.rb +0 -36
- data/lib/nano/string/shatter.rb +0 -45
- data/lib/nano/string/shift.rb +0 -42
- data/lib/nano/string/shuffle.rb +0 -42
- data/lib/nano/string/similarity.rb +0 -105
- data/lib/nano/string/singular.rb +0 -117
- data/lib/nano/string/slap.rb +0 -44
- data/lib/nano/string/soundex.rb +0 -102
- data/lib/nano/string/starts_with.rb +0 -24
- data/lib/nano/string/succ.rb +0 -38
- data/lib/nano/string/tab.rb +0 -2
- data/lib/nano/string/tabto.rb +0 -2
- data/lib/nano/string/to_a.rb +0 -35
- data/lib/nano/string/to_arr.rb +0 -55
- data/lib/nano/string/to_b.rb +0 -64
- data/lib/nano/string/to_const.rb +0 -39
- data/lib/nano/string/to_date.rb +0 -35
- data/lib/nano/string/to_proc.rb +0 -54
- data/lib/nano/string/to_re.rb +0 -37
- data/lib/nano/string/to_time.rb +0 -34
- data/lib/nano/string/unbracket.rb +0 -46
- data/lib/nano/string/underscore.rb +0 -18
- data/lib/nano/string/unix_crypt.rb +0 -41
- data/lib/nano/string/unpack.rb +0 -45
- data/lib/nano/string/unshift.rb +0 -42
- data/lib/nano/string/upcase.rb +0 -45
- data/lib/nano/string/uppercase.rb +0 -2
- data/lib/nano/string/whitespace.rb +0 -27
- data/lib/nano/string/word_filter.rb +0 -61
- data/lib/nano/string/word_wrap.rb +0 -90
- data/lib/nano/string/words.rb +0 -35
- data/lib/nano/string_as_array.rb +0 -16
- data/lib/nano/symbol.rb +0 -13
- data/lib/nano/symbol/camelcase.rb +0 -42
- data/lib/nano/symbol/camelize.rb +0 -33
- data/lib/nano/symbol/capitalize.rb +0 -31
- data/lib/nano/symbol/capitalized.rb +0 -33
- data/lib/nano/symbol/downcase.rb +0 -36
- data/lib/nano/symbol/not.rb +0 -40
- data/lib/nano/symbol/pad.rb +0 -43
- data/lib/nano/symbol/succ.rb +0 -42
- data/lib/nano/symbol/to_const.rb +0 -40
- data/lib/nano/symbol/to_proc.rb +0 -45
- data/lib/nano/symbol/to_str.rb +0 -39
- data/lib/nano/symbol/underscore.rb +0 -32
- data/lib/nano/symbol/upcase.rb +0 -37
- data/lib/nano/time.rb +0 -7
- data/lib/nano/time/change.rb +0 -51
- data/lib/nano/time/elapse.rb +0 -41
- data/lib/nano/time/self/days_extrema.rb +0 -22
- data/lib/nano/time/stamp.rb +0 -47
- data/lib/nano/time/to_date.rb +0 -37
- data/lib/nano/time/to_s.rb +0 -33
- data/lib/nano/time/to_time.rb +0 -36
- data/lib/nano/unboundmethod.rb +0 -1
- data/lib/nano/unboundmethod/name.rb +0 -8
- data/lib/unit/methodprobe.rb +0 -215
- data/lib/unit/quicktest.rb +0 -36
- data/lib/unit/test.rb +0 -145
- data/test/lib/mega/test_annotation.rb +0 -217
- data/test/lib/mega/test_ansicolor.rb +0 -36
- data/test/lib/mega/test_bbcode.rb +0 -34
- data/test/lib/mega/test_binary_multiplier.rb +0 -84
- data/test/lib/mega/test_byteorder.rb +0 -56
- data/test/lib/mega/test_class_inherit.rb +0 -118
- data/test/lib/mega/test_classmethods.rb +0 -47
- data/test/lib/mega/test_constants.rb +0 -18
- data/test/lib/mega/test_coroutine.rb +0 -60
- data/test/lib/mega/test_crosscase.rb +0 -45
- data/test/lib/mega/test_dictionary.rb +0 -90
- data/test/lib/mega/test_dynamod.rb +0 -62
- data/test/lib/mega/test_enumerable_args.rb +0 -80
- data/test/lib/mega/test_enumtype.rb +0 -25
- data/test/lib/mega/test_expirable.rb +0 -25
- data/test/lib/mega/test_filelist.rb +0 -40
- data/test/lib/mega/test_fixnum_const.rb +0 -25
- data/test/lib/mega/test_floatstring.rb +0 -36
- data/test/lib/mega/test_functor.rb +0 -39
- data/test/lib/mega/test_harray.rb +0 -294
- data/test/lib/mega/test_heap.rb +0 -18
- data/test/lib/mega/test_infinity.rb +0 -36
- data/test/lib/mega/test_inheritor.rb +0 -155
- data/test/lib/mega/test_interval.rb +0 -119
- data/test/lib/mega/test_lisp.rb +0 -47
- data/test/lib/mega/test_lru_cache.rb +0 -25
- data/test/lib/mega/test_mock.rb +0 -36
- data/test/lib/mega/test_multiplier.rb +0 -114
- data/test/lib/mega/test_multiton.rb +0 -200
- data/test/lib/mega/test_nack.rb +0 -45
- data/test/lib/mega/test_nilcomparable.rb +0 -43
- data/test/lib/mega/test_notcopyable.rb +0 -74
- data/test/lib/mega/test_openobject.rb +0 -66
- data/test/lib/mega/test_ostructable.rb +0 -43
- data/test/lib/mega/test_package.rb +0 -39
- data/test/lib/mega/test_promoteself.rb +0 -45
- data/test/lib/mega/test_snapshot.rb +0 -34
- data/test/lib/mega/test_statichash.rb +0 -31
- data/test/lib/mega/test_superstruct.rb +0 -334
- data/test/lib/mega/test_syncarray.rb +0 -28
- data/test/lib/mega/test_synchash.rb +0 -28
- data/test/lib/mega/test_tagiter.rb +0 -93
- data/test/lib/mega/test_time_in_english.rb +0 -73
- data/test/lib/mega/test_timer.rb +0 -66
- data/test/lib/mega/test_tuple.rb +0 -32
- data/test/lib/mega/test_uninheritable.rb +0 -42
- data/test/lib/mega/test_units.rb +0 -104
- data/test/lib/mega/test_version.rb +0 -104
- data/test/lib/nano/array/test_at_rand.rb +0 -34
- data/test/lib/nano/array/test_body.rb +0 -27
- data/test/lib/nano/array/test_delete_unless.rb +0 -28
- data/test/lib/nano/array/test_delete_values.rb +0 -28
- data/test/lib/nano/array/test_delete_values_at.rb +0 -31
- data/test/lib/nano/array/test_first.rb +0 -34
- data/test/lib/nano/array/test_foot.rb +0 -27
- data/test/lib/nano/array/test_head.rb +0 -27
- data/test/lib/nano/array/test_last.rb +0 -34
- data/test/lib/nano/array/test_last_index.rb +0 -26
- data/test/lib/nano/array/test_merge.rb +0 -35
- data/test/lib/nano/array/test_mid.rb +0 -33
- data/test/lib/nano/array/test_middle.rb +0 -29
- data/test/lib/nano/array/test_op_fetch.rb +0 -27
- data/test/lib/nano/array/test_op_store.rb +0 -30
- data/test/lib/nano/array/test_pick.rb +0 -40
- data/test/lib/nano/array/test_pos.rb +0 -28
- data/test/lib/nano/array/test_pull.rb +0 -28
- data/test/lib/nano/array/test_rand_index.rb +0 -29
- data/test/lib/nano/array/test_rand_subset.rb +0 -29
- data/test/lib/nano/array/test_range.rb +0 -32
- data/test/lib/nano/array/test_rotate.rb +0 -36
- data/test/lib/nano/array/test_select.rb +0 -28
- data/test/lib/nano/array/test_shuffle.rb +0 -35
- data/test/lib/nano/array/test_slap.rb +0 -28
- data/test/lib/nano/array/test_tail.rb +0 -27
- data/test/lib/nano/array/test_thru.rb +0 -27
- data/test/lib/nano/array/test_to_b.rb +0 -27
- data/test/lib/nano/array/test_to_h.rb +0 -33
- data/test/lib/nano/array/test_to_hash.rb +0 -27
- data/test/lib/nano/binding/self/test_of_caller.rb +0 -35
- data/test/lib/nano/binding/test___LINE__.rb +0 -43
- data/test/lib/nano/binding/test_call_stack.rb +0 -34
- data/test/lib/nano/binding/test_called.rb +0 -30
- data/test/lib/nano/binding/test_caller.rb +0 -35
- data/test/lib/nano/binding/test_defined.rb +0 -34
- data/test/lib/nano/binding/test_eval.rb +0 -34
- data/test/lib/nano/binding/test_local_variables.rb +0 -34
- data/test/lib/nano/binding/test_method_name.rb +0 -34
- data/test/lib/nano/binding/test_op_fetch.rb +0 -34
- data/test/lib/nano/binding/test_op_store.rb +0 -35
- data/test/lib/nano/binding/test_self.rb +0 -34
- data/test/lib/nano/class/test_descendents.rb +0 -30
- data/test/lib/nano/class/test_remove_descendents.rb +0 -32
- data/test/lib/nano/comparable/test_at_least.rb +0 -34
- data/test/lib/nano/comparable/test_clip.rb +0 -44
- data/test/lib/nano/comparable/test_cmp.rb +0 -28
- data/test/lib/nano/continuation/self/test_create.rb +0 -26
- data/test/lib/nano/date/test_days_in_month.rb +0 -30
- data/test/lib/nano/date/test_days_of_month.rb +0 -30
- data/test/lib/nano/date/test_stamp.rb +0 -38
- data/test/lib/nano/date/test_to_date.rb +0 -30
- data/test/lib/nano/date/test_to_s.rb +0 -30
- data/test/lib/nano/date/test_to_time.rb +0 -30
- data/test/lib/nano/dir/self/test_ancestor.rb +0 -26
- data/test/lib/nano/dir/self/test_ascend.rb +0 -41
- data/test/lib/nano/dir/self/test_ls_r.rb +0 -52
- data/test/lib/nano/enumerable/self/test_combinations.rb +0 -43
- data/test/lib/nano/enumerable/self/test_cross.rb +0 -31
- data/test/lib/nano/enumerable/test_collect_with_index.rb +0 -27
- data/test/lib/nano/enumerable/test_commonality.rb +0 -31
- data/test/lib/nano/enumerable/test_compact_collect.rb +0 -27
- data/test/lib/nano/enumerable/test_cross.rb +0 -30
- data/test/lib/nano/enumerable/test_each_combination.rb +0 -29
- data/test/lib/nano/enumerable/test_each_pair.rb +0 -29
- data/test/lib/nano/enumerable/test_each_slice.rb +0 -74
- data/test/lib/nano/enumerable/test_each_unique_pair.rb +0 -29
- data/test/lib/nano/enumerable/test_entropy.rb +0 -26
- data/test/lib/nano/enumerable/test_every.rb +0 -35
- data/test/lib/nano/enumerable/test_ew.rb +0 -31
- data/test/lib/nano/enumerable/test_filter_collect.rb +0 -31
- data/test/lib/nano/enumerable/test_find_collisions.rb +0 -30
- data/test/lib/nano/enumerable/test_frequency.rb +0 -27
- data/test/lib/nano/enumerable/test_graph.rb +0 -30
- data/test/lib/nano/enumerable/test_ideal_entropy.rb +0 -27
- data/test/lib/nano/enumerable/test_none.rb +0 -33
- data/test/lib/nano/enumerable/test_occur.rb +0 -30
- data/test/lib/nano/enumerable/test_one.rb +0 -35
- data/test/lib/nano/enumerable/test_op_pow.rb +0 -27
- data/test/lib/nano/enumerable/test_partition_by.rb +0 -31
- data/test/lib/nano/enumerable/test_probability.rb +0 -27
- data/test/lib/nano/enumerable/test_to_h.rb +0 -27
- data/test/lib/nano/enumerable/test_uniq_by.rb +0 -28
- data/test/lib/nano/file/self/test_create.rb +0 -39
- data/test/lib/nano/file/self/test_open_as_string.rb +0 -40
- data/test/lib/nano/file/self/test_read_list.rb +0 -37
- data/test/lib/nano/file/self/test_sanitize.rb +0 -46
- data/test/lib/nano/file/self/test_split_all.rb +0 -27
- data/test/lib/nano/fileutils/test_slice.rb +0 -96
- data/test/lib/nano/fileutils/test_wc.rb +0 -68
- data/test/lib/nano/fileutils/test_which.rb +0 -61
- data/test/lib/nano/float/test_approx.rb +0 -28
- data/test/lib/nano/float/test_round_at.rb +0 -46
- data/test/lib/nano/float/test_round_to.rb +0 -46
- data/test/lib/nano/hash/self/test_zipnew.rb +0 -28
- data/test/lib/nano/hash/test_alias.rb +0 -31
- data/test/lib/nano/hash/test_assert_has_keys.rb +0 -27
- data/test/lib/nano/hash/test_assert_has_only_keys.rb +0 -27
- data/test/lib/nano/hash/test_at.rb +0 -28
- data/test/lib/nano/hash/test_collate.rb +0 -35
- data/test/lib/nano/hash/test_each.rb +0 -36
- data/test/lib/nano/hash/test_each_with_index.rb +0 -29
- data/test/lib/nano/hash/test_each_with_key.rb +0 -29
- data/test/lib/nano/hash/test_graph.rb +0 -28
- data/test/lib/nano/hash/test_has_keys.rb +0 -27
- data/test/lib/nano/hash/test_has_only_keys.rb +0 -27
- data/test/lib/nano/hash/test_inverse.rb +0 -28
- data/test/lib/nano/hash/test_keys_to_s.rb +0 -34
- data/test/lib/nano/hash/test_keys_to_sym.rb +0 -34
- data/test/lib/nano/hash/test_op_fetch.rb +0 -111
- data/test/lib/nano/hash/test_op_lshift.rb +0 -29
- data/test/lib/nano/hash/test_rand_key.rb +0 -27
- data/test/lib/nano/hash/test_rand_pair.rb +0 -27
- data/test/lib/nano/hash/test_rand_value.rb +0 -27
- data/test/lib/nano/hash/test_replace_each.rb +0 -29
- data/test/lib/nano/hash/test_shuffle.rb +0 -32
- data/test/lib/nano/hash/test_slice.rb +0 -27
- data/test/lib/nano/hash/test_swap.rb +0 -27
- data/test/lib/nano/hash/test_swapkey.rb +0 -29
- data/test/lib/nano/hash/test_to_h.rb +0 -27
- data/test/lib/nano/hash/test_to_ostruct.rb +0 -30
- data/test/lib/nano/hash/test_to_ostruct_recurse.rb +0 -30
- data/test/lib/nano/hash/test_traverse.rb +0 -37
- data/test/lib/nano/hash/test_update_each.rb +0 -29
- data/test/lib/nano/hash/test_update_keys.rb +0 -28
- data/test/lib/nano/hash/test_update_values.rb +0 -28
- data/test/lib/nano/hash/test_weave.rb +0 -29
- data/test/lib/nano/integer/test_factorial.rb +0 -30
- data/test/lib/nano/integer/test_multiple.rb +0 -43
- data/test/lib/nano/integer/test_ordinal.rb +0 -29
- data/test/lib/nano/integer/test_times_collect.rb +0 -28
- data/test/lib/nano/integer/test_times_map.rb +0 -28
- data/test/lib/nano/kernel/test___class__.rb +0 -26
- data/test/lib/nano/kernel/test_as.rb +0 -42
- data/test/lib/nano/kernel/test_assign_from.rb +0 -31
- data/test/lib/nano/kernel/test_assign_with.rb +0 -31
- data/test/lib/nano/kernel/test_bool.rb +0 -41
- data/test/lib/nano/kernel/test_bug.rb +0 -26
- data/test/lib/nano/kernel/test_call_stack.rb +0 -26
- data/test/lib/nano/kernel/test_called.rb +0 -26
- data/test/lib/nano/kernel/test_constant.rb +0 -33
- data/test/lib/nano/kernel/test_copy.rb +0 -40
- data/test/lib/nano/kernel/test_deep_copy.rb +0 -40
- data/test/lib/nano/kernel/test_demo.rb +0 -28
- data/test/lib/nano/kernel/test_fn.rb +0 -26
- data/test/lib/nano/kernel/test_generate_method_name.rb +0 -26
- data/test/lib/nano/kernel/test_get_by_id.rb +0 -28
- data/test/lib/nano/kernel/test_here.rb +0 -26
- data/test/lib/nano/kernel/test_in.rb +0 -27
- data/test/lib/nano/kernel/test_maybe.rb +0 -26
- data/test/lib/nano/kernel/test_metaclass.rb +0 -34
- data/test/lib/nano/kernel/test_method.rb +0 -32
- data/test/lib/nano/kernel/test_method_name.rb +0 -31
- data/test/lib/nano/kernel/test_methods.rb +0 -50
- data/test/lib/nano/kernel/test_new.rb +0 -30
- data/test/lib/nano/kernel/test_object_class.rb +0 -26
- data/test/lib/nano/kernel/test_object_hexid.rb +0 -27
- data/test/lib/nano/kernel/test_require_all.rb +0 -26
- data/test/lib/nano/kernel/test_require_esc.rb +0 -27
- data/test/lib/nano/kernel/test_require_facet.rb +0 -27
- data/test/lib/nano/kernel/test_resc.rb +0 -27
- data/test/lib/nano/kernel/test_returning.rb +0 -30
- data/test/lib/nano/kernel/test_send_as.rb +0 -26
- data/test/lib/nano/kernel/test_set_from.rb +0 -33
- data/test/lib/nano/kernel/test_set_with.rb +0 -33
- data/test/lib/nano/kernel/test_silently.rb +0 -28
- data/test/lib/nano/kernel/test_singleton.rb +0 -40
- data/test/lib/nano/kernel/test_superior.rb +0 -30
- data/test/lib/nano/kernel/test_supermethod.rb +0 -33
- data/test/lib/nano/kernel/test_this.rb +0 -26
- data/test/lib/nano/kernel/test_to_b.rb +0 -28
- data/test/lib/nano/kernel/test_to_bool.rb +0 -28
- data/test/lib/nano/kernel/test_uri.rb +0 -30
- data/test/lib/nano/kernel/test_val.rb +0 -43
- data/test/lib/nano/kernel/test_with_accessor.rb +0 -51
- data/test/lib/nano/matchdata/test_match.rb +0 -29
- data/test/lib/nano/matchdata/test_matchtree.rb +0 -32
- data/test/lib/nano/module/test_abstract.rb +0 -36
- data/test/lib/nano/module/test_alias_module_function.rb +0 -34
- data/test/lib/nano/module/test_ancestor.rb +0 -26
- data/test/lib/nano/module/test_basename.rb +0 -26
- data/test/lib/nano/module/test_by_name.rb +0 -29
- data/test/lib/nano/module/test_cattr_accessor.rb +0 -55
- data/test/lib/nano/module/test_clone_using.rb +0 -55
- data/test/lib/nano/module/test_dirname.rb +0 -26
- data/test/lib/nano/module/test_equate_on.rb +0 -37
- data/test/lib/nano/module/test_generate_instance_method_name.rb +0 -33
- data/test/lib/nano/module/test_include_as.rb +0 -35
- data/test/lib/nano/module/test_initializer.rb +0 -32
- data/test/lib/nano/module/test_instance_methods.rb +0 -59
- data/test/lib/nano/module/test_integrate.rb +0 -35
- data/test/lib/nano/module/test_memoize.rb +0 -50
- data/test/lib/nano/module/test_modspace.rb +0 -27
- data/test/lib/nano/module/test_namespace.rb +0 -33
- data/test/lib/nano/module/test_nesting.rb +0 -36
- data/test/lib/nano/module/test_redef.rb +0 -30
- data/test/lib/nano/module/test_redefine_method.rb +0 -30
- data/test/lib/nano/module/test_redirect.rb +0 -30
- data/test/lib/nano/module/test_redirect_method.rb +0 -30
- data/test/lib/nano/module/test_remove.rb +0 -30
- data/test/lib/nano/module/test_rename.rb +0 -31
- data/test/lib/nano/module/test_rename_method.rb +0 -31
- data/test/lib/nano/module/test_revisal.rb +0 -35
- data/test/lib/nano/module/test_shadow_method.rb +0 -30
- data/test/lib/nano/module/test_sort_on.rb +0 -42
- data/test/lib/nano/module/test_undef.rb +0 -30
- data/test/lib/nano/module/test_wrap.rb +0 -30
- data/test/lib/nano/module/test_wrap_method.rb +0 -30
- data/test/lib/nano/nilclass/test_empty.rb +0 -26
- data/test/lib/nano/nilclass/test_include.rb +0 -26
- data/test/lib/nano/nilclass/test_op_fetch.rb +0 -28
- data/test/lib/nano/nilclass/test_size.rb +0 -30
- data/test/lib/nano/nilclass/test_to_f.rb +0 -26
- data/test/lib/nano/nilclass/test_to_h.rb +0 -26
- data/test/lib/nano/numeric/test_ceil_multiple.rb +0 -31
- data/test/lib/nano/numeric/test_succ.rb +0 -40
- data/test/lib/nano/numeric/test_to_b.rb +0 -27
- data/test/lib/nano/ostruct/test___merge__.rb +0 -38
- data/test/lib/nano/ostruct/test___update__.rb +0 -29
- data/test/lib/nano/ostruct/test_op_fetch.rb +0 -27
- data/test/lib/nano/ostruct/test_op_store.rb +0 -28
- data/test/lib/nano/proc/test_compose.rb +0 -36
- data/test/lib/nano/proc/test_to_method.rb +0 -31
- data/test/lib/nano/range/test_to_r.rb +0 -27
- data/test/lib/nano/range/test_to_range.rb +0 -27
- data/test/lib/nano/range/test_umbrella.rb +0 -34
- data/test/lib/nano/range/test_within.rb +0 -29
- data/test/lib/nano/regexp/test_arity.rb +0 -33
- data/test/lib/nano/regexp/test_to_re.rb +0 -27
- data/test/lib/nano/regexp/test_to_regexp.rb +0 -27
- data/test/lib/nano/string/self/test_interpolate.rb +0 -27
- data/test/lib/nano/string/self/test_patterns.rb +0 -28
- data/test/lib/nano/string/self/test_rand_letter.rb +0 -26
- data/test/lib/nano/string/test_align_center.rb +0 -34
- data/test/lib/nano/string/test_at_rand.rb +0 -35
- data/test/lib/nano/string/test_basename.rb +0 -41
- data/test/lib/nano/string/test_blank.rb +0 -27
- data/test/lib/nano/string/test_bracket.rb +0 -49
- data/test/lib/nano/string/test_camelcase.rb +0 -39
- data/test/lib/nano/string/test_camelize.rb +0 -26
- data/test/lib/nano/string/test_capitalized.rb +0 -26
- data/test/lib/nano/string/test_chars.rb +0 -27
- data/test/lib/nano/string/test_cmp.rb +0 -30
- data/test/lib/nano/string/test_demodulize.rb +0 -38
- data/test/lib/nano/string/test_downcase.rb +0 -26
- data/test/lib/nano/string/test_dresner.rb +0 -32
- data/test/lib/nano/string/test_each_char.rb +0 -29
- data/test/lib/nano/string/test_each_word.rb +0 -29
- data/test/lib/nano/string/test_first.rb +0 -43
- data/test/lib/nano/string/test_fold.rb +0 -28
- data/test/lib/nano/string/test_frequency.rb +0 -28
- data/test/lib/nano/string/test_humanize.rb +0 -26
- data/test/lib/nano/string/test_indent.rb +0 -40
- data/test/lib/nano/string/test_index_all.rb +0 -26
- data/test/lib/nano/string/test_last.rb +0 -46
- data/test/lib/nano/string/test_line_wrap.rb +0 -27
- data/test/lib/nano/string/test_lines.rb +0 -26
- data/test/lib/nano/string/test_lowercase.rb +0 -26
- data/test/lib/nano/string/test_margin.rb +0 -117
- data/test/lib/nano/string/test_mscan.rb +0 -30
- data/test/lib/nano/string/test_natcmp.rb +0 -30
- data/test/lib/nano/string/test_nchar.rb +0 -29
- data/test/lib/nano/string/test_pop.rb +0 -47
- data/test/lib/nano/string/test_probability.rb +0 -28
- data/test/lib/nano/string/test_push.rb +0 -40
- data/test/lib/nano/string/test_quote.rb +0 -49
- data/test/lib/nano/string/test_rand_byte.rb +0 -35
- data/test/lib/nano/string/test_rand_index.rb +0 -26
- data/test/lib/nano/string/test_range.rb +0 -27
- data/test/lib/nano/string/test_range_all.rb +0 -27
- data/test/lib/nano/string/test_range_of_line.rb +0 -28
- data/test/lib/nano/string/test_shatter.rb +0 -29
- data/test/lib/nano/string/test_shift.rb +0 -40
- data/test/lib/nano/string/test_shuffle.rb +0 -27
- data/test/lib/nano/string/test_similarity.rb +0 -26
- data/test/lib/nano/string/test_singular.rb +0 -32
- data/test/lib/nano/string/test_slap.rb +0 -40
- data/test/lib/nano/string/test_soundex.rb +0 -41
- data/test/lib/nano/string/test_succ.rb +0 -29
- data/test/lib/nano/string/test_to_a.rb +0 -27
- data/test/lib/nano/string/test_to_arr.rb +0 -26
- data/test/lib/nano/string/test_to_b.rb +0 -41
- data/test/lib/nano/string/test_to_const.rb +0 -28
- data/test/lib/nano/string/test_to_date.rb +0 -30
- data/test/lib/nano/string/test_to_proc.rb +0 -33
- data/test/lib/nano/string/test_to_re.rb +0 -28
- data/test/lib/nano/string/test_to_time.rb +0 -30
- data/test/lib/nano/string/test_unix_crypt.rb +0 -30
- data/test/lib/nano/string/test_unpack.rb +0 -34
- data/test/lib/nano/string/test_unshift.rb +0 -39
- data/test/lib/nano/string/test_upcase.rb +0 -30
- data/test/lib/nano/string/test_whitespace.rb +0 -27
- data/test/lib/nano/string/test_word_filter.rb +0 -34
- data/test/lib/nano/string/test_word_wrap.rb +0 -51
- data/test/lib/nano/string/test_words.rb +0 -27
- data/test/lib/nano/symbol/test_camelcase.rb +0 -26
- data/test/lib/nano/symbol/test_camelize.rb +0 -27
- data/test/lib/nano/symbol/test_capitalize.rb +0 -26
- data/test/lib/nano/symbol/test_capitalized.rb +0 -27
- data/test/lib/nano/symbol/test_downcase.rb +0 -27
- data/test/lib/nano/symbol/test_not.rb +0 -29
- data/test/lib/nano/symbol/test_pad.rb +0 -27
- data/test/lib/nano/symbol/test_succ.rb +0 -28
- data/test/lib/nano/symbol/test_to_const.rb +0 -28
- data/test/lib/nano/symbol/test_to_proc.rb +0 -27
- data/test/lib/nano/symbol/test_to_str.rb +0 -28
- data/test/lib/nano/symbol/test_underscore.rb +0 -26
- data/test/lib/nano/symbol/test_upcase.rb +0 -27
- data/test/lib/nano/time/test_change.rb +0 -33
- data/test/lib/nano/time/test_elapse.rb +0 -27
- data/test/lib/nano/time/test_stamp.rb +0 -31
- data/test/lib/nano/time/test_to_date.rb +0 -31
- data/test/lib/nano/time/test_to_s.rb +0 -31
- data/test/lib/nano/time/test_to_time.rb +0 -31
- data/test/lib/unit/test_methodprobe.rb +0 -53
- data/test/tc_nil_as_emptiness.rb +0 -20
- data/web/favicon.ico +0 -0
- data/web/images/abc.png +0 -0
- data/web/images/abc1.png +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/index.html +0 -310
@@ -0,0 +1,27 @@
|
|
1
|
+
# _____ _
|
2
|
+
# |_ _|__ ___| |_
|
3
|
+
# | |/ _ \/ __| __|
|
4
|
+
# | | __/\__ \ |_
|
5
|
+
# |_|\___||___/\__|
|
6
|
+
#
|
7
|
+
# for lib/facet/time/elapse.rb
|
8
|
+
#
|
9
|
+
# Extracted Sun Dec 04 13:57:47 EST 2005
|
10
|
+
# Unit Tools Reap Test Extractor
|
11
|
+
#
|
12
|
+
|
13
|
+
require 'facet/time/elapse.rb'
|
14
|
+
|
15
|
+
|
16
|
+
require 'test/unit'
|
17
|
+
|
18
|
+
class TCTime < Test::Unit::TestCase
|
19
|
+
|
20
|
+
def test_elapse
|
21
|
+
t = Time.elapse { sleep 1 }
|
22
|
+
assert( (t > 0.9) && (t < 2.1 ))
|
23
|
+
end
|
24
|
+
|
25
|
+
end
|
26
|
+
|
27
|
+
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# _____ _
|
2
|
+
# |_ _|__ ___| |_
|
3
|
+
# | |/ _ \/ __| __|
|
4
|
+
# | | __/\__ \ |_
|
5
|
+
# |_|\___||___/\__|
|
6
|
+
#
|
7
|
+
# for lib/facet/time/stamp.rb
|
8
|
+
#
|
9
|
+
# Extracted Sun Dec 04 13:57:47 EST 2005
|
10
|
+
# Unit Tools Reap Test Extractor
|
11
|
+
#
|
12
|
+
|
13
|
+
require 'facet/time/stamp.rb'
|
14
|
+
|
15
|
+
|
16
|
+
require 'test/unit'
|
17
|
+
require 'time'
|
18
|
+
|
19
|
+
class TCTime < Test::Unit::TestCase
|
20
|
+
|
21
|
+
def setup
|
22
|
+
@t = Time.parse('4/20/2005 15:37')
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_stamp
|
26
|
+
assert_equal( "Wed Apr 20 15:37:00 EDT 2005", @t.stamp )
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
30
|
+
|
31
|
+
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# _____ _
|
2
|
+
# |_ _|__ ___| |_
|
3
|
+
# | |/ _ \/ __| __|
|
4
|
+
# | | __/\__ \ |_
|
5
|
+
# |_|\___||___/\__|
|
6
|
+
#
|
7
|
+
# for lib/facet/time/to_date.rb
|
8
|
+
#
|
9
|
+
# Extracted Sun Dec 04 13:57:47 EST 2005
|
10
|
+
# Unit Tools Reap Test Extractor
|
11
|
+
#
|
12
|
+
|
13
|
+
require 'facet/time/to_date.rb'
|
14
|
+
|
15
|
+
|
16
|
+
require 'test/unit'
|
17
|
+
require 'time'
|
18
|
+
|
19
|
+
class TCTime < Test::Unit::TestCase
|
20
|
+
|
21
|
+
def setup
|
22
|
+
@t = Time.parse('4/20/2005 15:37')
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_to_date
|
26
|
+
assert_instance_of( ::Date, @t.to_date )
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
30
|
+
|
31
|
+
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# _____ _
|
2
|
+
# |_ _|__ ___| |_
|
3
|
+
# | |/ _ \/ __| __|
|
4
|
+
# | | __/\__ \ |_
|
5
|
+
# |_|\___||___/\__|
|
6
|
+
#
|
7
|
+
# for lib/facet/time/to_s.rb
|
8
|
+
#
|
9
|
+
# Extracted Sun Dec 04 13:57:47 EST 2005
|
10
|
+
# Unit Tools Reap Test Extractor
|
11
|
+
#
|
12
|
+
|
13
|
+
require 'facet/time/to_s.rb'
|
14
|
+
|
15
|
+
|
16
|
+
require 'test/unit'
|
17
|
+
require 'time'
|
18
|
+
|
19
|
+
class TCTime < Test::Unit::TestCase
|
20
|
+
|
21
|
+
def setup
|
22
|
+
@t = Time.parse('4/20/2005 15:37')
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_to_s
|
26
|
+
assert_equal( "Wed Apr 20 15:37:00 EDT 2005", @t.to_s )
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
30
|
+
|
31
|
+
|
@@ -0,0 +1,31 @@
|
|
1
|
+
# _____ _
|
2
|
+
# |_ _|__ ___| |_
|
3
|
+
# | |/ _ \/ __| __|
|
4
|
+
# | | __/\__ \ |_
|
5
|
+
# |_|\___||___/\__|
|
6
|
+
#
|
7
|
+
# for lib/facet/time/to_time.rb
|
8
|
+
#
|
9
|
+
# Extracted Sun Dec 04 13:57:47 EST 2005
|
10
|
+
# Unit Tools Reap Test Extractor
|
11
|
+
#
|
12
|
+
|
13
|
+
require 'facet/time/to_time.rb'
|
14
|
+
|
15
|
+
|
16
|
+
require 'test/unit'
|
17
|
+
require 'time'
|
18
|
+
|
19
|
+
class TCTime < Test::Unit::TestCase
|
20
|
+
|
21
|
+
def setup
|
22
|
+
@t = Time.parse('4/20/2005 15:37')
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_to_time
|
26
|
+
assert_instance_of( ::Time, @t.to_time )
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
30
|
+
|
31
|
+
|
@@ -0,0 +1,84 @@
|
|
1
|
+
# _____ _
|
2
|
+
# |_ _|__ ___| |_
|
3
|
+
# | |/ _ \/ __| __|
|
4
|
+
# | | __/\__ \ |_
|
5
|
+
# |_|\___||___/\__|
|
6
|
+
#
|
7
|
+
# for lib/facets/english/bytes.rb
|
8
|
+
#
|
9
|
+
# Extracted Sun Dec 04 13:57:47 EST 2005
|
10
|
+
# Unit Tools Reap Test Extractor
|
11
|
+
#
|
12
|
+
|
13
|
+
require 'facets/english/bytes.rb'
|
14
|
+
|
15
|
+
|
16
|
+
require 'test/unit'
|
17
|
+
|
18
|
+
class TC_Numeric < Test::Unit::TestCase
|
19
|
+
|
20
|
+
# bits
|
21
|
+
|
22
|
+
def test_bits
|
23
|
+
assert_equal( 8, 8.bits )
|
24
|
+
end
|
25
|
+
|
26
|
+
def test_kilobits
|
27
|
+
assert_equal( 1024**1, 1.kilobit )
|
28
|
+
end
|
29
|
+
|
30
|
+
def test_megabits
|
31
|
+
assert_equal( 1024**2, 1.megabit )
|
32
|
+
end
|
33
|
+
|
34
|
+
def test_gigabits
|
35
|
+
assert_equal( 1024**3, 1.gigabit )
|
36
|
+
end
|
37
|
+
|
38
|
+
def test_terabits
|
39
|
+
assert_equal( 1024**4, 1.terabit )
|
40
|
+
end
|
41
|
+
|
42
|
+
# bytes
|
43
|
+
|
44
|
+
def test_bytes
|
45
|
+
assert_equal( 8192, 1024.bytes )
|
46
|
+
end
|
47
|
+
|
48
|
+
def test_kilobytes
|
49
|
+
assert_equal( 1024**1*8, 1.kilobyte )
|
50
|
+
end
|
51
|
+
|
52
|
+
def test_megabytes
|
53
|
+
assert_equal( 1024**2*8, 1.megabyte )
|
54
|
+
end
|
55
|
+
|
56
|
+
def test_gigabytes
|
57
|
+
assert_equal( 1024**3*8, 1.gigabyte )
|
58
|
+
end
|
59
|
+
|
60
|
+
def test_terabytes
|
61
|
+
assert_equal( 1024**4*8, 1.terabyte )
|
62
|
+
end
|
63
|
+
|
64
|
+
# bits_to_s
|
65
|
+
|
66
|
+
def test_strfbits
|
67
|
+
assert_equal( "1.00 kb", 1024.strfbits )
|
68
|
+
assert_equal( "1.00 mb", 1048576.strfbits )
|
69
|
+
assert_equal( "1.00 gb", 1073741824.strfbits )
|
70
|
+
assert_equal( "1.00 tb", 1099511627776.strfbits )
|
71
|
+
end
|
72
|
+
|
73
|
+
# bytes_to_s
|
74
|
+
|
75
|
+
def test_strfbytes
|
76
|
+
assert_equal( "1.00 KB", 1024.strfbytes )
|
77
|
+
assert_equal( "1.00 MB", 1048576.strfbytes )
|
78
|
+
assert_equal( "1.00 GB", 1073741824.strfbytes )
|
79
|
+
assert_equal( "1.00 TB", 1099511627776.strfbytes )
|
80
|
+
end
|
81
|
+
|
82
|
+
end
|
83
|
+
|
84
|
+
|
@@ -0,0 +1,114 @@
|
|
1
|
+
# _____ _
|
2
|
+
# |_ _|__ ___| |_
|
3
|
+
# | |/ _ \/ __| __|
|
4
|
+
# | | __/\__ \ |_
|
5
|
+
# |_|\___||___/\__|
|
6
|
+
#
|
7
|
+
# for lib/facets/english/multipliers.rb
|
8
|
+
#
|
9
|
+
# Extracted Sun Dec 04 13:57:47 EST 2005
|
10
|
+
# Unit Tools Reap Test Extractor
|
11
|
+
#
|
12
|
+
|
13
|
+
require 'facets/english/multipliers.rb'
|
14
|
+
|
15
|
+
|
16
|
+
require 'test/unit'
|
17
|
+
|
18
|
+
class TC_Multipliers < Test::Unit::TestCase
|
19
|
+
|
20
|
+
def test_deka
|
21
|
+
assert_equal( 10, 1.deka )
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_hecto
|
25
|
+
assert_equal( 100, 1.hecto )
|
26
|
+
end
|
27
|
+
|
28
|
+
def test_kilo
|
29
|
+
assert_equal( 1000, 1.kilo )
|
30
|
+
end
|
31
|
+
|
32
|
+
def test_mega
|
33
|
+
assert_equal( 1000000, 1.mega )
|
34
|
+
end
|
35
|
+
|
36
|
+
def test_giga
|
37
|
+
assert_equal( 1000000000, 1.giga )
|
38
|
+
end
|
39
|
+
|
40
|
+
def test_tera
|
41
|
+
assert_equal( 1000000000000, 1.tera )
|
42
|
+
end
|
43
|
+
|
44
|
+
def test_peta
|
45
|
+
assert_equal( 1000000000000000, 1.peta )
|
46
|
+
end
|
47
|
+
|
48
|
+
def test_exa
|
49
|
+
assert_equal( 1000000000000000000, 1.exa )
|
50
|
+
end
|
51
|
+
|
52
|
+
# Fractional
|
53
|
+
|
54
|
+
def test_deci
|
55
|
+
assert_equal( 0.1, 1.deci )
|
56
|
+
end
|
57
|
+
|
58
|
+
def test_centi
|
59
|
+
assert_equal( 0.01, 1.centi )
|
60
|
+
end
|
61
|
+
|
62
|
+
def test_milli
|
63
|
+
assert_equal( 0.001, 1.milli )
|
64
|
+
end
|
65
|
+
|
66
|
+
def test_milli
|
67
|
+
assert_equal( 0.000001, 1.micro )
|
68
|
+
end
|
69
|
+
|
70
|
+
def test_nano
|
71
|
+
assert_equal( 0.000000001, 1.nano )
|
72
|
+
end
|
73
|
+
|
74
|
+
def test_pico
|
75
|
+
assert_equal( 0.000000000001, 1.pico )
|
76
|
+
end
|
77
|
+
|
78
|
+
def test_femto
|
79
|
+
assert_equal( 0.000000000000001, 1.femto )
|
80
|
+
end
|
81
|
+
|
82
|
+
def test_atto
|
83
|
+
assert_equal( 0.000000000000000001, 1.atto )
|
84
|
+
end
|
85
|
+
|
86
|
+
# SI Binary
|
87
|
+
|
88
|
+
def test_kibi
|
89
|
+
assert_equal( 1024, 1.kibi )
|
90
|
+
end
|
91
|
+
|
92
|
+
def test_mebi
|
93
|
+
assert_equal( 1024**2, 1.mebi )
|
94
|
+
end
|
95
|
+
|
96
|
+
def test_gibi
|
97
|
+
assert_equal( 1024**3, 1.gibi )
|
98
|
+
end
|
99
|
+
|
100
|
+
def test_tebi
|
101
|
+
assert_equal( 1024**4, 1.tebi )
|
102
|
+
end
|
103
|
+
|
104
|
+
def test_pebi
|
105
|
+
assert_equal( 1024**5, 1.pebi )
|
106
|
+
end
|
107
|
+
|
108
|
+
def test_exbi
|
109
|
+
assert_equal( 1024**6, 1.exbi )
|
110
|
+
end
|
111
|
+
|
112
|
+
end
|
113
|
+
|
114
|
+
|
@@ -0,0 +1,73 @@
|
|
1
|
+
# _____ _
|
2
|
+
# |_ _|__ ___| |_
|
3
|
+
# | |/ _ \/ __| __|
|
4
|
+
# | | __/\__ \ |_
|
5
|
+
# |_|\___||___/\__|
|
6
|
+
#
|
7
|
+
# for lib/facets/english/time.rb
|
8
|
+
#
|
9
|
+
# Extracted Sun Dec 04 13:57:47 EST 2005
|
10
|
+
# Unit Tools Reap Test Extractor
|
11
|
+
#
|
12
|
+
|
13
|
+
require 'facets/english/time.rb'
|
14
|
+
|
15
|
+
|
16
|
+
require 'test/unit'
|
17
|
+
#require 'mega/multiplier'
|
18
|
+
|
19
|
+
class TC_Numeric < Test::Unit::TestCase
|
20
|
+
|
21
|
+
#def test_micro_seconds
|
22
|
+
# assert_equal( 0.000001, 1.microsecond )
|
23
|
+
#end
|
24
|
+
|
25
|
+
#def test_milli_seconds
|
26
|
+
# assert_equal( 0.001, 1.millisecond )
|
27
|
+
#end
|
28
|
+
|
29
|
+
def test_seconds
|
30
|
+
assert_equal( 60**0, 1.seconds )
|
31
|
+
end
|
32
|
+
|
33
|
+
def test_minutes
|
34
|
+
assert_equal( 60**1, 1.minutes )
|
35
|
+
end
|
36
|
+
|
37
|
+
def test_hours
|
38
|
+
assert_equal( 60**2, 1.hours )
|
39
|
+
end
|
40
|
+
|
41
|
+
def test_days
|
42
|
+
assert_equal( 24*(60**2), 1.days )
|
43
|
+
end
|
44
|
+
|
45
|
+
def test_weeks
|
46
|
+
assert_equal( 7*24*(60**2), 1.weeks )
|
47
|
+
end
|
48
|
+
|
49
|
+
def test_fortnights
|
50
|
+
assert_equal( 14*24*(60**2), 1.fortnights )
|
51
|
+
end
|
52
|
+
|
53
|
+
def test_months
|
54
|
+
assert_equal( 30*24*(60**2), 1.months )
|
55
|
+
end
|
56
|
+
|
57
|
+
def test_years
|
58
|
+
assert_equal( 365*24*(60**2), 1.years )
|
59
|
+
end
|
60
|
+
|
61
|
+
def test_before
|
62
|
+
t = Time.now
|
63
|
+
assert_equal( t - 1.day, 1.day.before(t) )
|
64
|
+
end
|
65
|
+
|
66
|
+
def test_after
|
67
|
+
t = Time.now
|
68
|
+
assert_equal( t + 1.day, 1.day.after(t) )
|
69
|
+
end
|
70
|
+
|
71
|
+
end
|
72
|
+
|
73
|
+
|
metadata
CHANGED
@@ -3,11 +3,11 @@ rubygems_version: 0.8.11
|
|
3
3
|
specification_version: 1
|
4
4
|
name: facets
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.
|
7
|
-
date:
|
8
|
-
summary:
|
6
|
+
version: 1.0.0
|
7
|
+
date: 2005-12-12 00:00:00 -05:00
|
8
|
+
summary: Atomic collection of core extension methods.
|
9
9
|
require_paths:
|
10
|
-
- lib
|
10
|
+
- lib
|
11
11
|
email: transfire@gmail.com
|
12
12
|
homepage: http://facets.rubyforge.org
|
13
13
|
rubyforge_project: facets
|
@@ -18,1636 +18,906 @@ bindir: bin
|
|
18
18
|
has_rdoc: false
|
19
19
|
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
20
|
requirements:
|
21
|
-
|
22
|
-
|
23
|
-
|
21
|
+
-
|
22
|
+
- ">"
|
23
|
+
- !ruby/object:Gem::Version
|
24
|
+
version: 0.0.0
|
24
25
|
version:
|
25
26
|
platform: ruby
|
26
27
|
signing_key:
|
27
28
|
cert_chain:
|
28
29
|
authors:
|
29
|
-
- Thomas Sawyer
|
30
|
+
- Thomas Sawyer
|
30
31
|
files:
|
31
|
-
-
|
32
|
-
-
|
33
|
-
-
|
34
|
-
-
|
35
|
-
-
|
36
|
-
-
|
37
|
-
-
|
38
|
-
-
|
39
|
-
-
|
40
|
-
-
|
41
|
-
-
|
42
|
-
-
|
43
|
-
-
|
44
|
-
-
|
45
|
-
-
|
46
|
-
-
|
47
|
-
-
|
48
|
-
-
|
49
|
-
-
|
50
|
-
- lib/
|
51
|
-
- lib/
|
52
|
-
- lib/
|
53
|
-
- lib/facet
|
54
|
-
- lib/
|
55
|
-
- lib/
|
56
|
-
- lib/
|
57
|
-
- lib/
|
58
|
-
- lib/
|
59
|
-
- lib/
|
60
|
-
- lib/
|
61
|
-
- lib/
|
62
|
-
- lib/
|
63
|
-
- lib/
|
64
|
-
- lib/
|
65
|
-
- lib/
|
66
|
-
- lib/
|
67
|
-
- lib/
|
68
|
-
- lib/
|
69
|
-
- lib/
|
70
|
-
- lib/
|
71
|
-
- lib/
|
72
|
-
- lib/
|
73
|
-
- lib/
|
74
|
-
- lib/
|
75
|
-
- lib/
|
76
|
-
- lib/
|
77
|
-
- lib/
|
78
|
-
- lib/
|
79
|
-
- lib/
|
80
|
-
- lib/
|
81
|
-
- lib/
|
82
|
-
- lib/
|
83
|
-
- lib/
|
84
|
-
- lib/
|
85
|
-
- lib/
|
86
|
-
- lib/
|
87
|
-
- lib/
|
88
|
-
- lib/
|
89
|
-
- lib/
|
90
|
-
- lib/
|
91
|
-
- lib/
|
92
|
-
- lib/
|
93
|
-
- lib/
|
94
|
-
- lib/
|
95
|
-
- lib/
|
96
|
-
- lib/
|
97
|
-
- lib/
|
98
|
-
- lib/
|
99
|
-
- lib/
|
100
|
-
- lib/
|
101
|
-
- lib/
|
102
|
-
- lib/
|
103
|
-
- lib/
|
104
|
-
- lib/
|
105
|
-
- lib/
|
106
|
-
- lib/
|
107
|
-
- lib/
|
108
|
-
- lib/
|
109
|
-
- lib/
|
110
|
-
- lib/
|
111
|
-
- lib/
|
112
|
-
- lib/
|
113
|
-
- lib/
|
114
|
-
- lib/
|
115
|
-
- lib/
|
116
|
-
- lib/
|
117
|
-
- lib/
|
118
|
-
- lib/
|
119
|
-
- lib/
|
120
|
-
- lib/
|
121
|
-
- lib/
|
122
|
-
- lib/
|
123
|
-
- lib/
|
124
|
-
- lib/
|
125
|
-
- lib/
|
126
|
-
- lib/
|
127
|
-
- lib/
|
128
|
-
- lib/
|
129
|
-
- lib/
|
130
|
-
- lib/
|
131
|
-
- lib/
|
132
|
-
- lib/
|
133
|
-
- lib/
|
134
|
-
- lib/
|
135
|
-
- lib/
|
136
|
-
- lib/
|
137
|
-
- lib/
|
138
|
-
- lib/
|
139
|
-
- lib/
|
140
|
-
- lib/
|
141
|
-
- lib/
|
142
|
-
- lib/
|
143
|
-
- lib/
|
144
|
-
- lib/
|
145
|
-
- lib/
|
146
|
-
- lib/
|
147
|
-
- lib/
|
148
|
-
- lib/
|
149
|
-
- lib/
|
150
|
-
- lib/
|
151
|
-
- lib/
|
152
|
-
- lib/
|
153
|
-
- lib/
|
154
|
-
- lib/
|
155
|
-
- lib/
|
156
|
-
- lib/
|
157
|
-
- lib/
|
158
|
-
- lib/
|
159
|
-
- lib/
|
160
|
-
- lib/
|
161
|
-
- lib/
|
162
|
-
- lib/
|
163
|
-
- lib/
|
164
|
-
- lib/
|
165
|
-
- lib/
|
166
|
-
- lib/
|
167
|
-
- lib/
|
168
|
-
- lib/
|
169
|
-
- lib/
|
170
|
-
- lib/
|
171
|
-
- lib/
|
172
|
-
- lib/
|
173
|
-
- lib/
|
174
|
-
- lib/
|
175
|
-
- lib/
|
176
|
-
- lib/
|
177
|
-
- lib/
|
178
|
-
- lib/
|
179
|
-
- lib/
|
180
|
-
- lib/
|
181
|
-
- lib/
|
182
|
-
- lib/
|
183
|
-
- lib/
|
184
|
-
- lib/
|
185
|
-
- lib/
|
186
|
-
- lib/
|
187
|
-
- lib/
|
188
|
-
- lib/
|
189
|
-
- lib/
|
190
|
-
- lib/
|
191
|
-
- lib/
|
192
|
-
- lib/
|
193
|
-
- lib/
|
194
|
-
- lib/
|
195
|
-
- lib/
|
196
|
-
- lib/
|
197
|
-
- lib/
|
198
|
-
- lib/
|
199
|
-
- lib/
|
200
|
-
- lib/
|
201
|
-
- lib/
|
202
|
-
- lib/
|
203
|
-
- lib/
|
204
|
-
- lib/
|
205
|
-
- lib/
|
206
|
-
- lib/
|
207
|
-
- lib/
|
208
|
-
- lib/
|
209
|
-
- lib/
|
210
|
-
- lib/
|
211
|
-
- lib/
|
212
|
-
- lib/
|
213
|
-
- lib/
|
214
|
-
- lib/
|
215
|
-
- lib/
|
216
|
-
- lib/
|
217
|
-
- lib/
|
218
|
-
- lib/
|
219
|
-
- lib/
|
220
|
-
- lib/
|
221
|
-
- lib/
|
222
|
-
- lib/
|
223
|
-
- lib/
|
224
|
-
- lib/
|
225
|
-
- lib/
|
226
|
-
- lib/
|
227
|
-
- lib/
|
228
|
-
- lib/
|
229
|
-
- lib/
|
230
|
-
- lib/
|
231
|
-
- lib/
|
232
|
-
- lib/
|
233
|
-
- lib/
|
234
|
-
- lib/
|
235
|
-
- lib/
|
236
|
-
- lib/
|
237
|
-
- lib/
|
238
|
-
- lib/
|
239
|
-
- lib/
|
240
|
-
- lib/
|
241
|
-
- lib/
|
242
|
-
- lib/
|
243
|
-
- lib/
|
244
|
-
- lib/
|
245
|
-
- lib/
|
246
|
-
- lib/
|
247
|
-
- lib/
|
248
|
-
- lib/
|
249
|
-
- lib/
|
250
|
-
- lib/
|
251
|
-
- lib/
|
252
|
-
- lib/
|
253
|
-
- lib/
|
254
|
-
- lib/
|
255
|
-
- lib/
|
256
|
-
- lib/
|
257
|
-
- lib/
|
258
|
-
- lib/
|
259
|
-
- lib/
|
260
|
-
- lib/
|
261
|
-
- lib/
|
262
|
-
- lib/
|
263
|
-
- lib/
|
264
|
-
- lib/
|
265
|
-
- lib/
|
266
|
-
- lib/
|
267
|
-
- lib/
|
268
|
-
- lib/
|
269
|
-
- lib/
|
270
|
-
- lib/
|
271
|
-
- lib/
|
272
|
-
- lib/
|
273
|
-
- lib/
|
274
|
-
- lib/
|
275
|
-
- lib/
|
276
|
-
- lib/
|
277
|
-
- lib/
|
278
|
-
- lib/
|
279
|
-
- lib/
|
280
|
-
- lib/
|
281
|
-
- lib/
|
282
|
-
- lib/
|
283
|
-
- lib/
|
284
|
-
- lib/
|
285
|
-
- lib/
|
286
|
-
- lib/
|
287
|
-
- lib/
|
288
|
-
- lib/
|
289
|
-
- lib/
|
290
|
-
- lib/
|
291
|
-
- lib/
|
292
|
-
- lib/
|
293
|
-
- lib/
|
294
|
-
- lib/
|
295
|
-
- lib/
|
296
|
-
- lib/
|
297
|
-
- lib/
|
298
|
-
- lib/
|
299
|
-
- lib/
|
300
|
-
- lib/
|
301
|
-
- lib/
|
302
|
-
- lib/
|
303
|
-
- lib/
|
304
|
-
- lib/
|
305
|
-
- lib/
|
306
|
-
- lib/
|
307
|
-
- lib/
|
308
|
-
- lib/
|
309
|
-
- lib/
|
310
|
-
- lib/
|
311
|
-
- lib/
|
312
|
-
- lib/
|
313
|
-
- lib/
|
314
|
-
- lib/
|
315
|
-
- lib/
|
316
|
-
- lib/
|
317
|
-
- lib/
|
318
|
-
- lib/
|
319
|
-
- lib/
|
320
|
-
- lib/
|
321
|
-
- lib/
|
322
|
-
- lib/
|
323
|
-
- lib/
|
324
|
-
- lib/
|
325
|
-
- lib/
|
326
|
-
- lib/
|
327
|
-
- lib/
|
328
|
-
- lib/
|
329
|
-
- lib/
|
330
|
-
- lib/
|
331
|
-
- lib/
|
332
|
-
- lib/
|
333
|
-
- lib/
|
334
|
-
- lib/
|
335
|
-
- lib/
|
336
|
-
- lib/
|
337
|
-
- lib/
|
338
|
-
- lib/
|
339
|
-
- lib/
|
340
|
-
- lib/
|
341
|
-
- lib/
|
342
|
-
- lib/
|
343
|
-
- lib/
|
344
|
-
- lib/
|
345
|
-
- lib/
|
346
|
-
- lib/
|
347
|
-
- lib/
|
348
|
-
- lib/
|
349
|
-
- lib/
|
350
|
-
- lib/
|
351
|
-
- lib/
|
352
|
-
- lib/
|
353
|
-
- lib/
|
354
|
-
- lib/
|
355
|
-
- lib/
|
356
|
-
- lib/
|
357
|
-
- lib/
|
358
|
-
- lib/
|
359
|
-
- lib/
|
360
|
-
- lib/
|
361
|
-
- lib/
|
362
|
-
- lib/
|
363
|
-
- lib/
|
364
|
-
- lib/
|
365
|
-
- lib/
|
366
|
-
- lib/
|
367
|
-
- lib/
|
368
|
-
- lib/
|
369
|
-
- lib/
|
370
|
-
- lib/
|
371
|
-
- lib/
|
372
|
-
- lib/
|
373
|
-
- lib/
|
374
|
-
- lib/
|
375
|
-
- lib/
|
376
|
-
- lib/
|
377
|
-
- lib/
|
378
|
-
- lib/
|
379
|
-
- lib/
|
380
|
-
- lib/
|
381
|
-
- lib/
|
382
|
-
- lib/
|
383
|
-
- lib/
|
384
|
-
- lib/
|
385
|
-
- lib/
|
386
|
-
- lib/
|
387
|
-
- lib/
|
388
|
-
- lib/
|
389
|
-
- lib/
|
390
|
-
- lib/
|
391
|
-
- lib/
|
392
|
-
- lib/
|
393
|
-
- lib/
|
394
|
-
- lib/
|
395
|
-
- lib/
|
396
|
-
- lib/
|
397
|
-
- lib/
|
398
|
-
- lib/
|
399
|
-
- lib/
|
400
|
-
- lib/
|
401
|
-
- lib/
|
402
|
-
- lib/
|
403
|
-
- lib/
|
404
|
-
- lib/
|
405
|
-
- lib/
|
406
|
-
- lib/
|
407
|
-
- lib/
|
408
|
-
- lib/
|
409
|
-
- lib/
|
410
|
-
- lib/
|
411
|
-
- lib/
|
412
|
-
- lib/
|
413
|
-
- lib/
|
414
|
-
- lib/
|
415
|
-
- lib/
|
416
|
-
- lib/
|
417
|
-
- lib/
|
418
|
-
- lib/
|
419
|
-
- lib/
|
420
|
-
- lib/
|
421
|
-
- lib/
|
422
|
-
- lib/
|
423
|
-
- lib/
|
424
|
-
- lib/
|
425
|
-
- lib/
|
426
|
-
- lib/
|
427
|
-
- lib/
|
428
|
-
- lib/
|
429
|
-
- lib/
|
430
|
-
- lib/
|
431
|
-
- lib/
|
432
|
-
- lib/
|
433
|
-
- lib/
|
434
|
-
- lib/
|
435
|
-
- lib/
|
436
|
-
- lib/
|
437
|
-
- lib/
|
438
|
-
- lib/
|
439
|
-
- lib/
|
440
|
-
- lib/
|
441
|
-
- lib/
|
442
|
-
- lib/
|
443
|
-
- lib/
|
444
|
-
- lib/
|
445
|
-
- lib/
|
446
|
-
- lib/
|
447
|
-
- lib/
|
448
|
-
- lib/
|
449
|
-
- lib/
|
450
|
-
- lib/
|
451
|
-
- lib/
|
452
|
-
- lib/
|
453
|
-
- lib/
|
454
|
-
- lib/
|
455
|
-
- lib/
|
456
|
-
- lib/
|
457
|
-
- lib/
|
458
|
-
- lib/
|
459
|
-
- lib/
|
460
|
-
- lib/
|
461
|
-
- lib/
|
462
|
-
- lib/
|
463
|
-
- lib/
|
464
|
-
- lib/
|
465
|
-
- lib/
|
466
|
-
- lib/
|
467
|
-
- lib/
|
468
|
-
- lib/
|
469
|
-
- lib/
|
470
|
-
- lib/
|
471
|
-
- lib/
|
472
|
-
- lib/
|
473
|
-
- lib/
|
474
|
-
- lib/
|
475
|
-
- lib/
|
476
|
-
- lib/
|
477
|
-
- lib/
|
478
|
-
- lib/
|
479
|
-
- lib/
|
480
|
-
- lib/
|
481
|
-
- lib/
|
482
|
-
- lib/
|
483
|
-
- lib/
|
484
|
-
- lib/
|
485
|
-
- lib/
|
486
|
-
- lib/
|
487
|
-
- lib/
|
488
|
-
- lib/
|
489
|
-
- lib/
|
490
|
-
- lib/
|
491
|
-
- lib/
|
492
|
-
- lib/
|
493
|
-
- lib/
|
494
|
-
- lib/
|
495
|
-
- lib/
|
496
|
-
- lib/
|
497
|
-
- lib/
|
498
|
-
- lib/
|
499
|
-
- lib/
|
500
|
-
- lib/
|
501
|
-
- lib/
|
502
|
-
- lib/
|
503
|
-
- lib/
|
504
|
-
- lib/
|
505
|
-
- lib/
|
506
|
-
- lib/
|
507
|
-
- lib/
|
508
|
-
- lib/
|
509
|
-
- lib/
|
510
|
-
- lib/
|
511
|
-
- lib/
|
512
|
-
- lib/
|
513
|
-
- lib/
|
514
|
-
- lib/
|
515
|
-
- lib/
|
516
|
-
- lib/
|
517
|
-
- lib/
|
518
|
-
- lib/
|
519
|
-
- lib/
|
520
|
-
- lib/
|
521
|
-
- lib/
|
522
|
-
- lib/
|
523
|
-
- lib/
|
524
|
-
- lib/
|
525
|
-
- lib/
|
526
|
-
- lib/
|
527
|
-
- lib/
|
528
|
-
- lib/
|
529
|
-
- lib/
|
530
|
-
- lib/
|
531
|
-
- lib/
|
532
|
-
- lib/
|
533
|
-
- lib/
|
534
|
-
- lib/
|
535
|
-
- lib/
|
536
|
-
- lib/
|
537
|
-
- lib/
|
538
|
-
- lib/
|
539
|
-
- lib/
|
540
|
-
- lib/
|
541
|
-
- lib/
|
542
|
-
- lib/
|
543
|
-
- lib/
|
544
|
-
- lib/
|
545
|
-
- lib/
|
546
|
-
-
|
547
|
-
-
|
548
|
-
-
|
549
|
-
-
|
550
|
-
- lib
|
551
|
-
-
|
552
|
-
-
|
553
|
-
- lib/
|
554
|
-
- lib/
|
555
|
-
- lib/
|
556
|
-
- lib/
|
557
|
-
- lib/
|
558
|
-
- lib/
|
559
|
-
- lib/
|
560
|
-
- lib/
|
561
|
-
- lib/
|
562
|
-
- lib/
|
563
|
-
- lib/
|
564
|
-
- lib/
|
565
|
-
- lib/
|
566
|
-
- lib/
|
567
|
-
- lib/
|
568
|
-
- lib/
|
569
|
-
- lib/
|
570
|
-
- lib/
|
571
|
-
- lib/
|
572
|
-
- lib/
|
573
|
-
- lib/
|
574
|
-
- lib/
|
575
|
-
- lib/
|
576
|
-
- lib/
|
577
|
-
- lib/
|
578
|
-
- lib/
|
579
|
-
- lib/
|
580
|
-
- lib/
|
581
|
-
- lib/
|
582
|
-
- lib/
|
583
|
-
- lib/
|
584
|
-
- lib/
|
585
|
-
- lib/
|
586
|
-
- lib/
|
587
|
-
- lib/
|
588
|
-
- lib/
|
589
|
-
- lib/
|
590
|
-
- lib/
|
591
|
-
- lib/
|
592
|
-
- lib/
|
593
|
-
- lib/
|
594
|
-
- lib/
|
595
|
-
- lib/
|
596
|
-
- lib/
|
597
|
-
- lib/
|
598
|
-
- lib/
|
599
|
-
- lib/
|
600
|
-
- lib/
|
601
|
-
- lib/
|
602
|
-
- lib/
|
603
|
-
- lib/
|
604
|
-
- lib/
|
605
|
-
- lib/
|
606
|
-
- lib/
|
607
|
-
- lib/
|
608
|
-
- lib/
|
609
|
-
- lib/
|
610
|
-
- lib/
|
611
|
-
- lib/
|
612
|
-
- lib/
|
613
|
-
- lib/
|
614
|
-
- lib/
|
615
|
-
- lib/
|
616
|
-
- lib/facet/
|
617
|
-
- lib/facet/
|
618
|
-
- lib/facet/
|
619
|
-
- lib/facet/
|
620
|
-
- lib/facet/
|
621
|
-
- lib/facet/hash
|
622
|
-
- lib/facet/
|
623
|
-
- lib/facet/
|
624
|
-
- lib/facet/
|
625
|
-
- lib/facet/
|
626
|
-
- lib/facet/
|
627
|
-
- lib/facet/
|
628
|
-
- lib/facet/
|
629
|
-
- lib/facet/
|
630
|
-
- lib/facet/
|
631
|
-
- lib/facet/
|
632
|
-
- lib/facet/
|
633
|
-
- lib/facet/
|
634
|
-
- lib/facet/
|
635
|
-
- lib/facet/
|
636
|
-
- lib/facet/
|
637
|
-
- lib/facet/
|
638
|
-
- lib/facet/
|
639
|
-
- lib/facet/
|
640
|
-
- lib/facet/
|
641
|
-
- lib/facet/
|
642
|
-
- lib/facet/
|
643
|
-
- lib/facet/
|
644
|
-
- lib/facet/
|
645
|
-
- lib/facet/
|
646
|
-
- lib/facet/
|
647
|
-
- lib/facet/
|
648
|
-
- lib/facet/
|
649
|
-
- lib/facet/
|
650
|
-
- lib/facet/
|
651
|
-
- lib/facet/
|
652
|
-
- lib/facet/
|
653
|
-
- lib/facet/
|
654
|
-
- lib/facet/
|
655
|
-
- lib/facet/
|
656
|
-
- lib/facet/
|
657
|
-
- lib/facet/
|
658
|
-
- lib/facet/
|
659
|
-
- lib/facet/
|
660
|
-
- lib/facet/
|
661
|
-
- lib/facet/
|
662
|
-
- lib/facet/
|
663
|
-
- lib/facet/
|
664
|
-
- lib/facet/
|
665
|
-
- lib/facet/
|
666
|
-
- lib/facet/
|
667
|
-
- lib/facet/
|
668
|
-
- lib/facet/
|
669
|
-
- lib/facet/
|
670
|
-
- lib/facet/
|
671
|
-
- lib/facet/
|
672
|
-
- lib/facet/
|
673
|
-
- lib/facet/
|
674
|
-
- lib/facet/
|
675
|
-
- lib/facet/
|
676
|
-
- lib/facet/
|
677
|
-
- lib/facet/
|
678
|
-
- lib/facet/
|
679
|
-
- lib/facet/
|
680
|
-
- lib/facet/
|
681
|
-
- lib/facet/
|
682
|
-
- lib/facet/
|
683
|
-
- lib/facet/
|
684
|
-
- lib/facet/
|
685
|
-
- lib/facet/
|
686
|
-
- lib/facet/
|
687
|
-
- lib/facet/
|
688
|
-
- lib/facet/
|
689
|
-
- lib/facet/kernel.rb
|
690
|
-
- lib/facet/
|
691
|
-
- lib/facet/
|
692
|
-
- lib/facet/
|
693
|
-
- lib/facet/
|
694
|
-
- lib/facet/kernel
|
695
|
-
- lib/facet/
|
696
|
-
- lib/facet/
|
697
|
-
- lib/facet/
|
698
|
-
- lib/facet/
|
699
|
-
- lib/facet/
|
700
|
-
- lib/facet/
|
701
|
-
- lib/facet/
|
702
|
-
- lib/facet/
|
703
|
-
- lib/facet/
|
704
|
-
- lib/facet/
|
705
|
-
- lib/facet/
|
706
|
-
- lib/facet/
|
707
|
-
- lib/facet/
|
708
|
-
- lib/facet/
|
709
|
-
- lib/facet/
|
710
|
-
- lib/facet/
|
711
|
-
- lib/facet/
|
712
|
-
- lib/facet/
|
713
|
-
- lib/facet/
|
714
|
-
- lib/facet/
|
715
|
-
- lib/facet/
|
716
|
-
- lib/facet/
|
717
|
-
- lib/facet/
|
718
|
-
- lib/facet/
|
719
|
-
- lib/facet/
|
720
|
-
- lib/facet/
|
721
|
-
- lib/facet/
|
722
|
-
- lib/facet/
|
723
|
-
- lib/facet/
|
724
|
-
- lib/facet/
|
725
|
-
- lib/facet/
|
726
|
-
- lib/facet/
|
727
|
-
- lib/facet/
|
728
|
-
- lib/facet/
|
729
|
-
- lib/facet/
|
730
|
-
- lib/facet/
|
731
|
-
- lib/facet/
|
732
|
-
- lib/facet/
|
733
|
-
- lib/facet/
|
734
|
-
- lib/facet/
|
735
|
-
- lib/facet/
|
736
|
-
- lib/facet/
|
737
|
-
- lib/facet/
|
738
|
-
- lib/facet/
|
739
|
-
- lib/facet/
|
740
|
-
- lib/facet/
|
741
|
-
- lib/facet/
|
742
|
-
- lib/facet/
|
743
|
-
- lib/facet/
|
744
|
-
- lib/facet/
|
745
|
-
- lib/facet/
|
746
|
-
- lib/facet/
|
747
|
-
- lib/facet/
|
748
|
-
- lib/facet/
|
749
|
-
- lib/facet/
|
750
|
-
- lib/facet/
|
751
|
-
- lib/facet/
|
752
|
-
- lib/facet/
|
753
|
-
- lib/facet/
|
754
|
-
- lib/facet/
|
755
|
-
- lib/facet/
|
756
|
-
- lib/facet/
|
757
|
-
- lib/facet/
|
758
|
-
- lib/facet/
|
759
|
-
- lib/facet/
|
760
|
-
- lib/facet/
|
761
|
-
- lib/facet/
|
762
|
-
- lib/facet/
|
763
|
-
- lib/facet/
|
764
|
-
- lib/facet/
|
765
|
-
- lib/facet/
|
766
|
-
- lib/facet/
|
767
|
-
- lib/facet/
|
768
|
-
- lib/facet/
|
769
|
-
- lib/facet/
|
770
|
-
- lib/facet/
|
771
|
-
- lib/facet/
|
772
|
-
- lib/facet/
|
773
|
-
- lib/facet/
|
774
|
-
- lib/facet/
|
775
|
-
- lib/facet/
|
776
|
-
- lib/facet/
|
777
|
-
- lib/facet/
|
778
|
-
- lib/facet/
|
779
|
-
- lib/facet/
|
780
|
-
- lib/facet/
|
781
|
-
- lib/facet/
|
782
|
-
- lib/facet/
|
783
|
-
- lib/facet/
|
784
|
-
- lib/facet/
|
785
|
-
- lib/facet/
|
786
|
-
- lib/facet/
|
787
|
-
- lib/facet/
|
788
|
-
- lib/facet/
|
789
|
-
- lib/facet/
|
790
|
-
- lib/facet/
|
791
|
-
- lib/facet/
|
792
|
-
- lib/facet/
|
793
|
-
- lib/facet/
|
794
|
-
- lib/facet/
|
795
|
-
- lib/facet/
|
796
|
-
- lib/facet/
|
797
|
-
- lib/facet/
|
798
|
-
- lib/facet/
|
799
|
-
- lib/facet/
|
800
|
-
- lib/facet/
|
801
|
-
- lib/facet/
|
802
|
-
- lib/facet/
|
803
|
-
- lib/facet/
|
804
|
-
- lib/facet/
|
805
|
-
- lib/facet/
|
806
|
-
- lib/facet/
|
807
|
-
- lib/facet/
|
808
|
-
- lib/facet/
|
809
|
-
- lib/facet/
|
810
|
-
- lib/facet/
|
811
|
-
- lib/facet/
|
812
|
-
- lib/facet/
|
813
|
-
- lib/facet/
|
814
|
-
- lib/facet/
|
815
|
-
- lib/facet/
|
816
|
-
- lib/facet/
|
817
|
-
- lib/facet/
|
818
|
-
- lib/facet/
|
819
|
-
- lib/facet/
|
820
|
-
- lib/facet/
|
821
|
-
- lib/facet/
|
822
|
-
- lib/facet/
|
823
|
-
- lib/facet/
|
824
|
-
- lib/facet/
|
825
|
-
- lib/facet/
|
826
|
-
- lib/facet/
|
827
|
-
- lib/facet/
|
828
|
-
- lib/facet/
|
829
|
-
- lib/facet/
|
830
|
-
- lib/facet/
|
831
|
-
- lib/facet/
|
832
|
-
- lib/facet/
|
833
|
-
- lib/facet/
|
834
|
-
- lib/facet/
|
835
|
-
- lib/facet/
|
836
|
-
- lib/facet/
|
837
|
-
- lib/facet/
|
838
|
-
- lib/facet/
|
839
|
-
- lib/facet/
|
840
|
-
- lib/facet/
|
841
|
-
- lib/facet/
|
842
|
-
- lib/facet/
|
843
|
-
- lib/facet/
|
844
|
-
- lib/facet/
|
845
|
-
- lib/facet/
|
846
|
-
- lib/facet/
|
847
|
-
- lib/facet/
|
848
|
-
- lib/facet/
|
849
|
-
- lib/facet/
|
850
|
-
- lib/facet/
|
851
|
-
- lib/facet/
|
852
|
-
- lib/facet/
|
853
|
-
- lib/facet/
|
854
|
-
- lib/facet/
|
855
|
-
- lib/facet/
|
856
|
-
- lib/facet/
|
857
|
-
- lib/facet/
|
858
|
-
- lib/facet/
|
859
|
-
- lib/facet/
|
860
|
-
- lib/facet/
|
861
|
-
- lib/facet/
|
862
|
-
- lib/facet/
|
863
|
-
- lib/facet/
|
864
|
-
- lib/facet/
|
865
|
-
- lib/facet/
|
866
|
-
- lib/facet/
|
867
|
-
- lib/facet/
|
868
|
-
- lib/facet/
|
869
|
-
- lib/facet/
|
870
|
-
- lib/facet/
|
871
|
-
- lib/facet/
|
872
|
-
- lib/facet/
|
873
|
-
- lib/facet/
|
874
|
-
- lib/facet/
|
875
|
-
- lib/facet/
|
876
|
-
- lib/facet/
|
877
|
-
- lib/facet/
|
878
|
-
- lib/facet/
|
879
|
-
- lib/facet/
|
880
|
-
- lib/facet/
|
881
|
-
- lib/facet/
|
882
|
-
- lib/facet/
|
883
|
-
- lib/facet/
|
884
|
-
- lib/facet/
|
885
|
-
- lib/facet/
|
886
|
-
- lib/facet/
|
887
|
-
- lib/facet/
|
888
|
-
- lib/facet/
|
889
|
-
- lib/facet/
|
890
|
-
- lib/facet/
|
891
|
-
- lib/facet/
|
892
|
-
- lib/facet/
|
893
|
-
- lib/facet/
|
894
|
-
- lib/facet/
|
895
|
-
- lib/facet/
|
896
|
-
- lib/facet/
|
897
|
-
- lib/facet/
|
898
|
-
- lib/
|
899
|
-
- lib/
|
900
|
-
- lib/
|
901
|
-
- lib/
|
902
|
-
-
|
903
|
-
-
|
904
|
-
-
|
905
|
-
-
|
906
|
-
-
|
907
|
-
-
|
908
|
-
-
|
909
|
-
-
|
910
|
-
-
|
911
|
-
-
|
912
|
-
-
|
913
|
-
-
|
914
|
-
-
|
915
|
-
-
|
916
|
-
- lib/facet/kernel/unuri.rb
|
917
|
-
- lib/facet/kernel/autoreload_glob.rb
|
918
|
-
- lib/facet/kernel/assign_from.rb
|
919
|
-
- lib/facet/kernel/__class__.rb
|
920
|
-
- lib/facet/kernel/meta.rb
|
921
|
-
- lib/facet/kernel/send_as.rb
|
922
|
-
- lib/facet/kernel/this.rb
|
923
|
-
- lib/facet/kernel/nack.rb
|
924
|
-
- lib/facet/kernel/silence_warnings.rb
|
925
|
-
- lib/facet/kernel/bug.rb
|
926
|
-
- lib/facet/kernel/method_name.rb
|
927
|
-
- lib/facet/kernel/generate_method_name.rb
|
928
|
-
- lib/facet/kernel/with_reader.rb
|
929
|
-
- lib/facet/kernel/to_b.rb
|
930
|
-
- lib/facet/kernel/supermethod.rb
|
931
|
-
- lib/facet/kernel/op_esc.rb
|
932
|
-
- lib/facet/kernel/maybe.rb
|
933
|
-
- lib/facet/kernel/require_local.rb
|
934
|
-
- lib/facet/kernel/true.rb
|
935
|
-
- lib/facet/kernel/with_writer.rb
|
936
|
-
- lib/facet/kernel/complete.rb
|
937
|
-
- lib/facet/kernel/object_class.rb
|
938
|
-
- lib/facet/kernel/new.rb
|
939
|
-
- lib/facet/kernel/with_accessor.rb
|
940
|
-
- lib/facet/kernel/returning.rb
|
941
|
-
- lib/facet/kernel/own.rb
|
942
|
-
- lib/facet/kernel/instvar.rb
|
943
|
-
- lib/facet/kernel/here.rb
|
944
|
-
- lib/facet/kernel/called.rb
|
945
|
-
- lib/facet/kernel/metaclass.rb
|
946
|
-
- lib/facet/kernel/assign_with.rb
|
947
|
-
- lib/facet/kernel/val.rb
|
948
|
-
- lib/facet/kernel/uri.rb
|
949
|
-
- lib/facet/kernel/set_from.rb
|
950
|
-
- lib/facet/kernel/eigenclass.rb
|
951
|
-
- lib/facet/kernel/warn_with_line.rb
|
952
|
-
- lib/facet/kernel/object_hexid.rb
|
953
|
-
- lib/facet/kernel/method.rb
|
954
|
-
- lib/facet/kernel/deep_copy.rb
|
955
|
-
- lib/facet/kernel/superior.rb
|
956
|
-
- lib/facet/kernel/bool.rb
|
957
|
-
- lib/facet/kernel/require_facet.rb
|
958
|
-
- lib/facet/kernel/silently.rb
|
959
|
-
- lib/facet/logger/format.rb
|
960
|
-
- lib/facet/logger/format_message.rb
|
961
|
-
- lib/facet/module/redefine_method.rb
|
962
|
-
- lib/facet/module/redirect_method.rb
|
963
|
-
- lib/facet/module/initializer.rb
|
964
|
-
- lib/facet/module/clone_renaming.rb
|
965
|
-
- lib/facet/module/undef.rb
|
966
|
-
- lib/facet/module/shadow_all.rb
|
967
|
-
- lib/facet/module/clone_removing.rb
|
968
|
-
- lib/facet/module/is.rb
|
969
|
-
- lib/facet/module/modspace.rb
|
970
|
-
- lib/facet/module/instance_methods.rb
|
971
|
-
- lib/facet/module/attr_tester.rb
|
972
|
-
- lib/facet/module/integrate.rb
|
973
|
-
- lib/facet/module/basename.rb
|
974
|
-
- lib/facet/module/generate_instance_method_name.rb
|
975
|
-
- lib/facet/module/redirect.rb
|
976
|
-
- lib/facet/module/shadow_method.rb
|
977
|
-
- lib/facet/module/alias_module_function.rb
|
978
|
-
- lib/facet/module/namespace.rb
|
979
|
-
- lib/facet/module/abstract.rb
|
980
|
-
- lib/facet/module/cattr_reader.rb
|
981
|
-
- lib/facet/module/nesting.rb
|
982
|
-
- lib/facet/module/wrap_method.rb
|
983
|
-
- lib/facet/module/cattr_writer.rb
|
984
|
-
- lib/facet/module/ancestor.rb
|
985
|
-
- lib/facet/module/include_as.rb
|
986
|
-
- lib/facet/module/rename_method.rb
|
987
|
-
- lib/facet/module/attr_setter.rb
|
988
|
-
- lib/facet/module/rename.rb
|
989
|
-
- lib/facet/module/dirname.rb
|
990
|
-
- lib/facet/module/attr.rb
|
991
|
-
- lib/facet/module/remove.rb
|
992
|
-
- lib/facet/module/sort_on.rb
|
993
|
-
- lib/facet/module/cattr_accessor.rb
|
994
|
-
- lib/facet/module/equate_on.rb
|
995
|
-
- lib/facet/module/redef.rb
|
996
|
-
- lib/facet/module/clone_using.rb
|
997
|
-
- lib/facet/module/by_name.rb
|
998
|
-
- lib/facet/module/memoize.rb
|
999
|
-
- lib/facet/module/wrap.rb
|
1000
|
-
- lib/facet/module/revisal.rb
|
1001
|
-
- lib/facet/enumerable/self
|
1002
|
-
- lib/facet/enumerable/find_collisions.rb
|
1003
|
-
- lib/facet/enumerable/map_with_counter.rb
|
1004
|
-
- lib/facet/enumerable/each_unique_pair.rb
|
1005
|
-
- lib/facet/enumerable/ew.rb
|
1006
|
-
- lib/facet/enumerable/graph.rb
|
1007
|
-
- lib/facet/enumerable/elementwise.rb
|
1008
|
-
- lib/facet/enumerable/filter_collect.rb
|
1009
|
-
- lib/facet/enumerable/map_with_index.rb
|
1010
|
-
- lib/facet/enumerable/ideal_entropy.rb
|
1011
|
-
- lib/facet/enumerable/where.rb
|
1012
|
-
- lib/facet/enumerable/partition_by.rb
|
1013
|
-
- lib/facet/enumerable/nonuniq.rb
|
1014
|
-
- lib/facet/enumerable/each_permutation.rb
|
1015
|
-
- lib/facet/enumerable/probability.rb
|
1016
|
-
- lib/facet/enumerable/collect_with_counter.rb
|
1017
|
-
- lib/facet/enumerable/collect_with_index.rb
|
1018
|
-
- lib/facet/enumerable/to_h.rb
|
1019
|
-
- lib/facet/enumerable/each_by.rb
|
1020
|
-
- lib/facet/enumerable/each_pair.rb
|
1021
|
-
- lib/facet/enumerable/every.rb
|
1022
|
-
- lib/facet/enumerable/compact_collect.rb
|
1023
|
-
- lib/facet/enumerable/one.rb
|
1024
|
-
- lib/facet/enumerable/none.rb
|
1025
|
-
- lib/facet/enumerable/project.rb
|
1026
|
-
- lib/facet/enumerable/op_pow.rb
|
1027
|
-
- lib/facet/enumerable/frequency.rb
|
1028
|
-
- lib/facet/enumerable/compact_map.rb
|
1029
|
-
- lib/facet/enumerable/filter_map.rb
|
1030
|
-
- lib/facet/enumerable/occur.rb
|
1031
|
-
- lib/facet/enumerable/commonality.rb
|
1032
|
-
- lib/facet/enumerable/each_combination.rb
|
1033
|
-
- lib/facet/enumerable/each_slice.rb
|
1034
|
-
- lib/facet/enumerable/entropy.rb
|
1035
|
-
- lib/facet/enumerable/each_with_counter.rb
|
1036
|
-
- lib/facet/enumerable/uniq_by.rb
|
1037
|
-
- lib/facet/enumerable/cross.rb
|
1038
|
-
- lib/facet/enumerable/self/combinations.rb
|
1039
|
-
- lib/facet/enumerable/self/cross.rb
|
1040
|
-
- lib/facet/regexp/to_regexp.rb
|
1041
|
-
- lib/facet/regexp/to_re.rb
|
1042
|
-
- lib/facet/regexp/arity.rb
|
1043
|
-
- lib/facet/unboundmethod/name.rb
|
1044
|
-
- lib/facet/string/self
|
1045
|
-
- lib/facet/string/pull.rb
|
1046
|
-
- lib/facet/string/push.rb
|
1047
|
-
- lib/facet/string/uppercase.rb
|
1048
|
-
- lib/facet/string/shift.rb
|
1049
|
-
- lib/facet/string/dresner.rb
|
1050
|
-
- lib/facet/string/plural.rb
|
1051
|
-
- lib/facet/string/word_filter.rb
|
1052
|
-
- lib/facet/string/unix_crypt.rb
|
1053
|
-
- lib/facet/string/camelcase.rb
|
1054
|
-
- lib/facet/string/humanize.rb
|
1055
|
-
- lib/facet/string/at.rb
|
1056
|
-
- lib/facet/string/margin.rb
|
1057
|
-
- lib/facet/string/dequote.rb
|
1058
|
-
- lib/facet/string/word_wrap.rb
|
1059
|
-
- lib/facet/string/last.rb
|
1060
|
-
- lib/facet/string/unpack.rb
|
1061
|
-
- lib/facet/string/rand_index.rb
|
1062
|
-
- lib/facet/string/nchar.rb
|
1063
|
-
- lib/facet/string/singular.rb
|
1064
|
-
- lib/facet/string/brief.rb
|
1065
|
-
- lib/facet/string/similarity.rb
|
1066
|
-
- lib/facet/string/rand_byte.rb
|
1067
|
-
- lib/facet/string/to_proc.rb
|
1068
|
-
- lib/facet/string/blank.rb
|
1069
|
-
- lib/facet/string/demodulize.rb
|
1070
|
-
- lib/facet/string/to_date.rb
|
1071
|
-
- lib/facet/string/chars.rb
|
1072
|
-
- lib/facet/string/slap.rb
|
1073
|
-
- lib/facet/string/starts_with.rb
|
1074
|
-
- lib/facet/string/first_char.rb
|
1075
|
-
- lib/facet/string/capitalized.rb
|
1076
|
-
- lib/facet/string/bytes.rb
|
1077
|
-
- lib/facet/string/basename.rb
|
1078
|
-
- lib/facet/string/downcase.rb
|
1079
|
-
- lib/facet/string/succ.rb
|
1080
|
-
- lib/facet/string/probability.rb
|
1081
|
-
- lib/facet/string/cmp.rb
|
1082
|
-
- lib/facet/string/whitespace.rb
|
1083
|
-
- lib/facet/string/at_rand.rb
|
1084
|
-
- lib/facet/string/first.rb
|
1085
|
-
- lib/facet/string/fold.rb
|
1086
|
-
- lib/facet/string/camelize.rb
|
1087
|
-
- lib/facet/string/unbracket.rb
|
1088
|
-
- lib/facet/string/range.rb
|
1089
|
-
- lib/facet/string/to_a.rb
|
1090
|
-
- lib/facet/string/to_b.rb
|
1091
|
-
- lib/facet/string/to_re.rb
|
1092
|
-
- lib/facet/string/last_char.rb
|
1093
|
-
- lib/facet/string/line_wrap.rb
|
1094
|
-
- lib/facet/string/tabto.rb
|
1095
|
-
- lib/facet/string/align_center.rb
|
1096
|
-
- lib/facet/string/words.rb
|
1097
|
-
- lib/facet/string/indent.rb
|
1098
|
-
- lib/facet/string/align_right.rb
|
1099
|
-
- lib/facet/string/upcase.rb
|
1100
|
-
- lib/facet/string/format.rb
|
1101
|
-
- lib/facet/string/to_const.rb
|
1102
|
-
- lib/facet/string/pop.rb
|
1103
|
-
- lib/facet/string/align_left.rb
|
1104
|
-
- lib/facet/string/tab.rb
|
1105
|
-
- lib/facet/string/range_of_line.rb
|
1106
|
-
- lib/facet/string/frequency.rb
|
1107
|
-
- lib/facet/string/lowercase.rb
|
1108
|
-
- lib/facet/string/to_time.rb
|
1109
|
-
- lib/facet/string/to_arr.rb
|
1110
|
-
- lib/facet/string/ordinal.rb
|
1111
|
-
- lib/facet/string/shuffle.rb
|
1112
|
-
- lib/facet/string/each_char.rb
|
1113
|
-
- lib/facet/string/unshift.rb
|
1114
|
-
- lib/facet/string/each_word.rb
|
1115
|
-
- lib/facet/string/bracket.rb
|
1116
|
-
- lib/facet/string/index_all.rb
|
1117
|
-
- lib/facet/string/quote.rb
|
1118
|
-
- lib/facet/string/soundex.rb
|
1119
|
-
- lib/facet/string/range_all.rb
|
1120
|
-
- lib/facet/string/mscan.rb
|
1121
|
-
- lib/facet/string/ends_with.rb
|
1122
|
-
- lib/facet/string/shatter.rb
|
1123
|
-
- lib/facet/string/underscore.rb
|
1124
|
-
- lib/facet/string/natcmp.rb
|
1125
|
-
- lib/facet/string/lines.rb
|
1126
|
-
- lib/facet/string/self/patterns.rb
|
1127
|
-
- lib/facet/string/self/rand_letter.rb
|
1128
|
-
- lib/facet/string/self/random.rb
|
1129
|
-
- lib/facet/string/self/format.rb
|
1130
|
-
- lib/facet/string/self/interpolate.rb
|
1131
|
-
- lib/facet/symbol/camelcase.rb
|
1132
|
-
- lib/facet/symbol/to_proc.rb
|
1133
|
-
- lib/facet/symbol/capitalize.rb
|
1134
|
-
- lib/facet/symbol/capitalized.rb
|
1135
|
-
- lib/facet/symbol/downcase.rb
|
1136
|
-
- lib/facet/symbol/succ.rb
|
1137
|
-
- lib/facet/symbol/camelize.rb
|
1138
|
-
- lib/facet/symbol/upcase.rb
|
1139
|
-
- lib/facet/symbol/not.rb
|
1140
|
-
- lib/facet/symbol/pad.rb
|
1141
|
-
- lib/facet/symbol/to_const.rb
|
1142
|
-
- lib/facet/symbol/underscore.rb
|
1143
|
-
- lib/facet/symbol/to_str.rb
|
1144
|
-
- lib/facet/numeric/succ.rb
|
1145
|
-
- lib/facet/numeric/to_b.rb
|
1146
|
-
- lib/facet/numeric/ceil_multiple.rb
|
1147
|
-
- lib/facet/numeric/pred.rb
|
1148
|
-
- lib/facet/binding/call_stack.rb
|
1149
|
-
- lib/facet/binding/self
|
1150
|
-
- lib/facet/binding/self.rb
|
1151
|
-
- lib/facet/binding/__DIR__.rb
|
1152
|
-
- lib/facet/binding/__LINE__.rb
|
1153
|
-
- lib/facet/binding/eval.rb
|
1154
|
-
- lib/facet/binding/method_name.rb
|
1155
|
-
- lib/facet/binding/called.rb
|
1156
|
-
- lib/facet/binding/caller.rb
|
1157
|
-
- lib/facet/binding/__FILE__.rb
|
1158
|
-
- lib/facet/binding/defined.rb
|
1159
|
-
- lib/facet/binding/op_store.rb
|
1160
|
-
- lib/facet/binding/op_fetch.rb
|
1161
|
-
- lib/facet/binding/local_variables.rb
|
1162
|
-
- lib/facet/binding/self/of_caller.rb
|
1163
|
-
- lib/facet/ostruct/__update__.rb
|
1164
|
-
- lib/facet/ostruct/__merge__.rb
|
1165
|
-
- lib/facet/ostruct/to_h.rb
|
1166
|
-
- lib/facet/ostruct/op_store.rb
|
1167
|
-
- lib/facet/ostruct/op_fetch.rb
|
1168
|
-
- lib/facet/ostruct/__table__.rb
|
1169
|
-
- lib/facet/integer/multiple.rb
|
1170
|
-
- lib/facet/integer/times_collect.rb
|
1171
|
-
- lib/facet/integer/times_map.rb
|
1172
|
-
- lib/facet/integer/fact.rb
|
1173
|
-
- lib/facet/integer/even.rb
|
1174
|
-
- lib/facet/integer/odd.rb
|
1175
|
-
- lib/facet/integer/factorial.rb
|
1176
|
-
- lib/facet/integer/ordinal.rb
|
1177
|
-
- web/favicon.ico
|
1178
|
-
- web/index.html
|
1179
|
-
- web/images
|
1180
|
-
- web/images/ruby-lg.png
|
1181
|
-
- web/images/gray.jpg
|
1182
|
-
- web/images/abc1.png
|
1183
|
-
- web/images/ruby.gif
|
1184
|
-
- web/images/abc.png
|
1185
|
-
- data/facets
|
1186
|
-
- data/facets/units
|
1187
|
-
- data/facets/index.yml
|
1188
|
-
- data/facets/units/si
|
1189
|
-
- data/facets/units/uk
|
1190
|
-
- data/facets/units/us
|
1191
|
-
- data/facets/units/cex.yaml
|
1192
|
-
- data/facets/units/default.yaml
|
1193
|
-
- data/facets/units/currency
|
1194
|
-
- data/facets/units/binary
|
1195
|
-
- data/facets/units/dump_yaml.rb
|
1196
|
-
- data/facets/units/uk.yaml
|
1197
|
-
- data/facets/units/us.yaml
|
1198
|
-
- data/facets/units/standard.yaml
|
1199
|
-
- data/facets/units/xmethods
|
1200
|
-
- data/facets/units/si/derived.yaml
|
1201
|
-
- data/facets/units/si/extra.yaml
|
1202
|
-
- data/facets/units/si/base.yaml
|
1203
|
-
- data/facets/units/uk/base.yaml
|
1204
|
-
- data/facets/units/us/base.yaml
|
1205
|
-
- data/facets/units/currency/base.yaml
|
1206
|
-
- data/facets/units/binary/extra.yaml
|
1207
|
-
- data/facets/units/binary/base.yaml
|
1208
|
-
- data/facets/units/xmethods/mapping.yaml
|
1209
|
-
- data/facets/units/xmethods/cached.yaml
|
1210
|
-
- conf/facets
|
1211
|
-
- conf/facets/extra
|
1212
|
-
- conf/facets/noauto
|
1213
|
-
- demo/ann-demo.rb
|
1214
|
-
- test/lib
|
1215
|
-
- test/testdir.rb
|
1216
|
-
- test/FIXTURE
|
1217
|
-
- test/tc_nil_as_emptiness.rb
|
1218
|
-
- test/lib/mega
|
1219
|
-
- test/lib/nano
|
1220
|
-
- test/lib/unit
|
1221
|
-
- test/lib/mega/test_constants.rb
|
1222
|
-
- test/lib/mega/test_version.rb
|
1223
|
-
- test/lib/mega/test_annotation.rb
|
1224
|
-
- test/lib/mega/test_uninheritable.rb
|
1225
|
-
- test/lib/mega/test_snapshot.rb
|
1226
|
-
- test/lib/mega/test_interval.rb
|
1227
|
-
- test/lib/mega/test_units.rb
|
1228
|
-
- test/lib/mega/test_classmethods.rb
|
1229
|
-
- test/lib/mega/test_promoteself.rb
|
1230
|
-
- test/lib/mega/test_superstruct.rb
|
1231
|
-
- test/lib/mega/test_time_in_english.rb
|
1232
|
-
- test/lib/mega/test_expirable.rb
|
1233
|
-
- test/lib/mega/test_lisp.rb
|
1234
|
-
- test/lib/mega/test_tagiter.rb
|
1235
|
-
- test/lib/mega/test_statichash.rb
|
1236
|
-
- test/lib/mega/test_bbcode.rb
|
1237
|
-
- test/lib/mega/test_ansicolor.rb
|
1238
|
-
- test/lib/mega/test_nack.rb
|
1239
|
-
- test/lib/mega/test_harray.rb
|
1240
|
-
- test/lib/mega/test_syncarray.rb
|
1241
|
-
- test/lib/mega/test_mock.rb
|
1242
|
-
- test/lib/mega/test_floatstring.rb
|
1243
|
-
- test/lib/mega/test_inheritor.rb
|
1244
|
-
- test/lib/mega/test_class_inherit.rb
|
1245
|
-
- test/lib/mega/test_functor.rb
|
1246
|
-
- test/lib/mega/test_openobject.rb
|
1247
|
-
- test/lib/mega/test_dictionary.rb
|
1248
|
-
- test/lib/mega/test_heap.rb
|
1249
|
-
- test/lib/mega/test_binary_multiplier.rb
|
1250
|
-
- test/lib/mega/test_nilcomparable.rb
|
1251
|
-
- test/lib/mega/test_ostructable.rb
|
1252
|
-
- test/lib/mega/test_tuple.rb
|
1253
|
-
- test/lib/mega/test_multiplier.rb
|
1254
|
-
- test/lib/mega/test_infinity.rb
|
1255
|
-
- test/lib/mega/test_fixnum_const.rb
|
1256
|
-
- test/lib/mega/test_synchash.rb
|
1257
|
-
- test/lib/mega/test_timer.rb
|
1258
|
-
- test/lib/mega/test_crosscase.rb
|
1259
|
-
- test/lib/mega/test_enumtype.rb
|
1260
|
-
- test/lib/mega/test_dynamod.rb
|
1261
|
-
- test/lib/mega/test_byteorder.rb
|
1262
|
-
- test/lib/mega/test_package.rb
|
1263
|
-
- test/lib/mega/test_lru_cache.rb
|
1264
|
-
- test/lib/mega/test_notcopyable.rb
|
1265
|
-
- test/lib/mega/test_multiton.rb
|
1266
|
-
- test/lib/mega/test_filelist.rb
|
1267
|
-
- test/lib/mega/test_enumerable_args.rb
|
1268
|
-
- test/lib/mega/test_coroutine.rb
|
1269
|
-
- test/lib/nano/dir
|
1270
|
-
- test/lib/nano/date
|
1271
|
-
- test/lib/nano/file
|
1272
|
-
- test/lib/nano/hash
|
1273
|
-
- test/lib/nano/proc
|
1274
|
-
- test/lib/nano/time
|
1275
|
-
- test/lib/nano/fileutils
|
1276
|
-
- test/lib/nano/array
|
1277
|
-
- test/lib/nano/class
|
1278
|
-
- test/lib/nano/float
|
1279
|
-
- test/lib/nano/nilclass
|
1280
|
-
- test/lib/nano/range
|
1281
|
-
- test/lib/nano/comparable
|
1282
|
-
- test/lib/nano/continuation
|
1283
|
-
- test/lib/nano/matchdata
|
1284
|
-
- test/lib/nano/kernel
|
1285
|
-
- test/lib/nano/module
|
1286
|
-
- test/lib/nano/enumerable
|
1287
|
-
- test/lib/nano/regexp
|
1288
|
-
- test/lib/nano/string
|
1289
|
-
- test/lib/nano/symbol
|
1290
|
-
- test/lib/nano/numeric
|
1291
|
-
- test/lib/nano/binding
|
1292
|
-
- test/lib/nano/ostruct
|
1293
|
-
- test/lib/nano/integer
|
1294
|
-
- test/lib/nano/dir/self
|
1295
|
-
- test/lib/nano/dir/self/test_ls_r.rb
|
1296
|
-
- test/lib/nano/dir/self/test_ancestor.rb
|
1297
|
-
- test/lib/nano/dir/self/test_ascend.rb
|
1298
|
-
- test/lib/nano/date/test_days_in_month.rb
|
1299
|
-
- test/lib/nano/date/test_to_date.rb
|
1300
|
-
- test/lib/nano/date/test_to_s.rb
|
1301
|
-
- test/lib/nano/date/test_days_of_month.rb
|
1302
|
-
- test/lib/nano/date/test_stamp.rb
|
1303
|
-
- test/lib/nano/date/test_to_time.rb
|
1304
|
-
- test/lib/nano/file/self
|
1305
|
-
- test/lib/nano/file/self/test_split_all.rb
|
1306
|
-
- test/lib/nano/file/self/test_sanitize.rb
|
1307
|
-
- test/lib/nano/file/self/test_open_as_string.rb
|
1308
|
-
- test/lib/nano/file/self/test_create.rb
|
1309
|
-
- test/lib/nano/file/self/test_read_list.rb
|
1310
|
-
- test/lib/nano/hash/self
|
1311
|
-
- test/lib/nano/hash/test_update_values.rb
|
1312
|
-
- test/lib/nano/hash/test_at.rb
|
1313
|
-
- test/lib/nano/hash/test_each.rb
|
1314
|
-
- test/lib/nano/hash/test_collate.rb
|
1315
|
-
- test/lib/nano/hash/test_update_keys.rb
|
1316
|
-
- test/lib/nano/hash/test_graph.rb
|
1317
|
-
- test/lib/nano/hash/test_update_each.rb
|
1318
|
-
- test/lib/nano/hash/test_has_only_keys.rb
|
1319
|
-
- test/lib/nano/hash/test_inverse.rb
|
1320
|
-
- test/lib/nano/hash/test_rand_key.rb
|
1321
|
-
- test/lib/nano/hash/test_keys_to_s.rb
|
1322
|
-
- test/lib/nano/hash/test_swap.rb
|
1323
|
-
- test/lib/nano/hash/test_assert_has_keys.rb
|
1324
|
-
- test/lib/nano/hash/test_to_h.rb
|
1325
|
-
- test/lib/nano/hash/test_op_lshift.rb
|
1326
|
-
- test/lib/nano/hash/test_rand_pair.rb
|
1327
|
-
- test/lib/nano/hash/test_replace_each.rb
|
1328
|
-
- test/lib/nano/hash/test_each_with_index.rb
|
1329
|
-
- test/lib/nano/hash/test_keys_to_sym.rb
|
1330
|
-
- test/lib/nano/hash/test_traverse.rb
|
1331
|
-
- test/lib/nano/hash/test_slice.rb
|
1332
|
-
- test/lib/nano/hash/test_to_ostruct.rb
|
1333
|
-
- test/lib/nano/hash/test_op_fetch.rb
|
1334
|
-
- test/lib/nano/hash/test_has_keys.rb
|
1335
|
-
- test/lib/nano/hash/test_assert_has_only_keys.rb
|
1336
|
-
- test/lib/nano/hash/test_alias.rb
|
1337
|
-
- test/lib/nano/hash/test_rand_value.rb
|
1338
|
-
- test/lib/nano/hash/test_shuffle.rb
|
1339
|
-
- test/lib/nano/hash/test_to_ostruct_recurse.rb
|
1340
|
-
- test/lib/nano/hash/test_each_with_key.rb
|
1341
|
-
- test/lib/nano/hash/test_weave.rb
|
1342
|
-
- test/lib/nano/hash/test_swapkey.rb
|
1343
|
-
- test/lib/nano/hash/self/test_zipnew.rb
|
1344
|
-
- test/lib/nano/proc/test_compose.rb
|
1345
|
-
- test/lib/nano/proc/test_to_method.rb
|
1346
|
-
- test/lib/nano/time/test_change.rb
|
1347
|
-
- test/lib/nano/time/test_to_date.rb
|
1348
|
-
- test/lib/nano/time/test_to_s.rb
|
1349
|
-
- test/lib/nano/time/test_stamp.rb
|
1350
|
-
- test/lib/nano/time/test_elapse.rb
|
1351
|
-
- test/lib/nano/time/test_to_time.rb
|
1352
|
-
- test/lib/nano/fileutils/test_wc.rb
|
1353
|
-
- test/lib/nano/fileutils/test_which.rb
|
1354
|
-
- test/lib/nano/fileutils/test_slice.rb
|
1355
|
-
- test/lib/nano/array/test_merge.rb
|
1356
|
-
- test/lib/nano/array/test_select.rb
|
1357
|
-
- test/lib/nano/array/test_last.rb
|
1358
|
-
- test/lib/nano/array/test_slap.rb
|
1359
|
-
- test/lib/nano/array/test_delete_unless.rb
|
1360
|
-
- test/lib/nano/array/test_delete_values.rb
|
1361
|
-
- test/lib/nano/array/test_tail.rb
|
1362
|
-
- test/lib/nano/array/test_thru.rb
|
1363
|
-
- test/lib/nano/array/test_foot.rb
|
1364
|
-
- test/lib/nano/array/test_to_b.rb
|
1365
|
-
- test/lib/nano/array/test_to_h.rb
|
1366
|
-
- test/lib/nano/array/test_first.rb
|
1367
|
-
- test/lib/nano/array/test_rand_subset.rb
|
1368
|
-
- test/lib/nano/array/test_range.rb
|
1369
|
-
- test/lib/nano/array/test_head.rb
|
1370
|
-
- test/lib/nano/array/test_at_rand.rb
|
1371
|
-
- test/lib/nano/array/test_mid.rb
|
1372
|
-
- test/lib/nano/array/test_rotate.rb
|
1373
|
-
- test/lib/nano/array/test_pos.rb
|
1374
|
-
- test/lib/nano/array/test_op_store.rb
|
1375
|
-
- test/lib/nano/array/test_op_fetch.rb
|
1376
|
-
- test/lib/nano/array/test_rand_index.rb
|
1377
|
-
- test/lib/nano/array/test_delete_values_at.rb
|
1378
|
-
- test/lib/nano/array/test_pick.rb
|
1379
|
-
- test/lib/nano/array/test_middle.rb
|
1380
|
-
- test/lib/nano/array/test_body.rb
|
1381
|
-
- test/lib/nano/array/test_shuffle.rb
|
1382
|
-
- test/lib/nano/array/test_last_index.rb
|
1383
|
-
- test/lib/nano/array/test_pull.rb
|
1384
|
-
- test/lib/nano/array/test_to_hash.rb
|
1385
|
-
- test/lib/nano/class/test_remove_descendents.rb
|
1386
|
-
- test/lib/nano/class/test_descendents.rb
|
1387
|
-
- test/lib/nano/float/test_approx.rb
|
1388
|
-
- test/lib/nano/float/test_round_at.rb
|
1389
|
-
- test/lib/nano/float/test_round_to.rb
|
1390
|
-
- test/lib/nano/nilclass/test_size.rb
|
1391
|
-
- test/lib/nano/nilclass/test_to_f.rb
|
1392
|
-
- test/lib/nano/nilclass/test_to_h.rb
|
1393
|
-
- test/lib/nano/nilclass/test_empty.rb
|
1394
|
-
- test/lib/nano/nilclass/test_op_fetch.rb
|
1395
|
-
- test/lib/nano/nilclass/test_include.rb
|
1396
|
-
- test/lib/nano/range/test_umbrella.rb
|
1397
|
-
- test/lib/nano/range/test_to_r.rb
|
1398
|
-
- test/lib/nano/range/test_to_range.rb
|
1399
|
-
- test/lib/nano/range/test_within.rb
|
1400
|
-
- test/lib/nano/comparable/test_cmp.rb
|
1401
|
-
- test/lib/nano/comparable/test_at_least.rb
|
1402
|
-
- test/lib/nano/comparable/test_clip.rb
|
1403
|
-
- test/lib/nano/continuation/self
|
1404
|
-
- test/lib/nano/continuation/self/test_create.rb
|
1405
|
-
- test/lib/nano/matchdata/test_match.rb
|
1406
|
-
- test/lib/nano/matchdata/test_matchtree.rb
|
1407
|
-
- test/lib/nano/kernel/test_resc.rb
|
1408
|
-
- test/lib/nano/kernel/test_as.rb
|
1409
|
-
- test/lib/nano/kernel/test_fn.rb
|
1410
|
-
- test/lib/nano/kernel/test_in.rb
|
1411
|
-
- test/lib/nano/kernel/test_returning.rb
|
1412
|
-
- test/lib/nano/kernel/test_metaclass.rb
|
1413
|
-
- test/lib/nano/kernel/test_to_bool.rb
|
1414
|
-
- test/lib/nano/kernel/test_require_all.rb
|
1415
|
-
- test/lib/nano/kernel/test_this.rb
|
1416
|
-
- test/lib/nano/kernel/test_deep_copy.rb
|
1417
|
-
- test/lib/nano/kernel/test_methods.rb
|
1418
|
-
- test/lib/nano/kernel/test_require_esc.rb
|
1419
|
-
- test/lib/nano/kernel/test_to_b.rb
|
1420
|
-
- test/lib/nano/kernel/test_with_accessor.rb
|
1421
|
-
- test/lib/nano/kernel/test_bug.rb
|
1422
|
-
- test/lib/nano/kernel/test_send_as.rb
|
1423
|
-
- test/lib/nano/kernel/test_call_stack.rb
|
1424
|
-
- test/lib/nano/kernel/test_assign_from.rb
|
1425
|
-
- test/lib/nano/kernel/test_get_by_id.rb
|
1426
|
-
- test/lib/nano/kernel/test_maybe.rb
|
1427
|
-
- test/lib/nano/kernel/test_here.rb
|
1428
|
-
- test/lib/nano/kernel/test_called.rb
|
1429
|
-
- test/lib/nano/kernel/test_new.rb
|
1430
|
-
- test/lib/nano/kernel/test_set_from.rb
|
1431
|
-
- test/lib/nano/kernel/test_method_name.rb
|
1432
|
-
- test/lib/nano/kernel/test_object_class.rb
|
1433
|
-
- test/lib/nano/kernel/test_val.rb
|
1434
|
-
- test/lib/nano/kernel/test_uri.rb
|
1435
|
-
- test/lib/nano/kernel/test_singleton.rb
|
1436
|
-
- test/lib/nano/kernel/test_supermethod.rb
|
1437
|
-
- test/lib/nano/kernel/test_superior.rb
|
1438
|
-
- test/lib/nano/kernel/test_method.rb
|
1439
|
-
- test/lib/nano/kernel/test_require_facet.rb
|
1440
|
-
- test/lib/nano/kernel/test_bool.rb
|
1441
|
-
- test/lib/nano/kernel/test___class__.rb
|
1442
|
-
- test/lib/nano/kernel/test_generate_method_name.rb
|
1443
|
-
- test/lib/nano/kernel/test_silently.rb
|
1444
|
-
- test/lib/nano/kernel/test_assign_with.rb
|
1445
|
-
- test/lib/nano/kernel/test_constant.rb
|
1446
|
-
- test/lib/nano/kernel/test_object_hexid.rb
|
1447
|
-
- test/lib/nano/kernel/test_copy.rb
|
1448
|
-
- test/lib/nano/kernel/test_demo.rb
|
1449
|
-
- test/lib/nano/kernel/test_set_with.rb
|
1450
|
-
- test/lib/nano/module/test_modspace.rb
|
1451
|
-
- test/lib/nano/module/test_namespace.rb
|
1452
|
-
- test/lib/nano/module/test_undef.rb
|
1453
|
-
- test/lib/nano/module/test_by_name.rb
|
1454
|
-
- test/lib/nano/module/test_memoize.rb
|
1455
|
-
- test/lib/nano/module/test_revisal.rb
|
1456
|
-
- test/lib/nano/module/test_clone_using.rb
|
1457
|
-
- test/lib/nano/module/test_initializer.rb
|
1458
|
-
- test/lib/nano/module/test_include_as.rb
|
1459
|
-
- test/lib/nano/module/test_basename.rb
|
1460
|
-
- test/lib/nano/module/test_shadow_method.rb
|
1461
|
-
- test/lib/nano/module/test_instance_methods.rb
|
1462
|
-
- test/lib/nano/module/test_redirect.rb
|
1463
|
-
- test/lib/nano/module/test_redefine_method.rb
|
1464
|
-
- test/lib/nano/module/test_redirect_method.rb
|
1465
|
-
- test/lib/nano/module/test_abstract.rb
|
1466
|
-
- test/lib/nano/module/test_equate_on.rb
|
1467
|
-
- test/lib/nano/module/test_alias_module_function.rb
|
1468
|
-
- test/lib/nano/module/test_ancestor.rb
|
1469
|
-
- test/lib/nano/module/test_rename_method.rb
|
1470
|
-
- test/lib/nano/module/test_nesting.rb
|
1471
|
-
- test/lib/nano/module/test_rename.rb
|
1472
|
-
- test/lib/nano/module/test_remove.rb
|
1473
|
-
- test/lib/nano/module/test_wrap_method.rb
|
1474
|
-
- test/lib/nano/module/test_wrap.rb
|
1475
|
-
- test/lib/nano/module/test_dirname.rb
|
1476
|
-
- test/lib/nano/module/test_integrate.rb
|
1477
|
-
- test/lib/nano/module/test_redef.rb
|
1478
|
-
- test/lib/nano/module/test_cattr_accessor.rb
|
1479
|
-
- test/lib/nano/module/test_sort_on.rb
|
1480
|
-
- test/lib/nano/module/test_generate_instance_method_name.rb
|
1481
|
-
- test/lib/nano/enumerable/self
|
1482
|
-
- test/lib/nano/enumerable/test_ew.rb
|
1483
|
-
- test/lib/nano/enumerable/test_each_pair.rb
|
1484
|
-
- test/lib/nano/enumerable/test_graph.rb
|
1485
|
-
- test/lib/nano/enumerable/test_frequency.rb
|
1486
|
-
- test/lib/nano/enumerable/test_ideal_entropy.rb
|
1487
|
-
- test/lib/nano/enumerable/test_filter_collect.rb
|
1488
|
-
- test/lib/nano/enumerable/test_each_unique_pair.rb
|
1489
|
-
- test/lib/nano/enumerable/test_each_slice.rb
|
1490
|
-
- test/lib/nano/enumerable/test_find_collisions.rb
|
1491
|
-
- test/lib/nano/enumerable/test_to_h.rb
|
1492
|
-
- test/lib/nano/enumerable/test_partition_by.rb
|
1493
|
-
- test/lib/nano/enumerable/test_collect_with_index.rb
|
1494
|
-
- test/lib/nano/enumerable/test_none.rb
|
1495
|
-
- test/lib/nano/enumerable/test_every.rb
|
1496
|
-
- test/lib/nano/enumerable/test_op_pow.rb
|
1497
|
-
- test/lib/nano/enumerable/test_one.rb
|
1498
|
-
- test/lib/nano/enumerable/test_probability.rb
|
1499
|
-
- test/lib/nano/enumerable/test_occur.rb
|
1500
|
-
- test/lib/nano/enumerable/test_each_combination.rb
|
1501
|
-
- test/lib/nano/enumerable/test_cross.rb
|
1502
|
-
- test/lib/nano/enumerable/test_entropy.rb
|
1503
|
-
- test/lib/nano/enumerable/test_uniq_by.rb
|
1504
|
-
- test/lib/nano/enumerable/test_commonality.rb
|
1505
|
-
- test/lib/nano/enumerable/test_compact_collect.rb
|
1506
|
-
- test/lib/nano/enumerable/self/test_combinations.rb
|
1507
|
-
- test/lib/nano/enumerable/self/test_cross.rb
|
1508
|
-
- test/lib/nano/regexp/test_to_re.rb
|
1509
|
-
- test/lib/nano/regexp/test_arity.rb
|
1510
|
-
- test/lib/nano/regexp/test_to_regexp.rb
|
1511
|
-
- test/lib/nano/string/test_shatter.rb
|
1512
|
-
- test/lib/nano/string/self
|
1513
|
-
- test/lib/nano/string/test_shift.rb
|
1514
|
-
- test/lib/nano/string/test_line_wrap.rb
|
1515
|
-
- test/lib/nano/string/test_margin.rb
|
1516
|
-
- test/lib/nano/string/test_last.rb
|
1517
|
-
- test/lib/nano/string/test_singular.rb
|
1518
|
-
- test/lib/nano/string/test_unpack.rb
|
1519
|
-
- test/lib/nano/string/test_dresner.rb
|
1520
|
-
- test/lib/nano/string/test_frequency.rb
|
1521
|
-
- test/lib/nano/string/test_nchar.rb
|
1522
|
-
- test/lib/nano/string/test_lowercase.rb
|
1523
|
-
- test/lib/nano/string/test_slap.rb
|
1524
|
-
- test/lib/nano/string/test_each_char.rb
|
1525
|
-
- test/lib/nano/string/test_blank.rb
|
1526
|
-
- test/lib/nano/string/test_word_filter.rb
|
1527
|
-
- test/lib/nano/string/test_basename.rb
|
1528
|
-
- test/lib/nano/string/test_each_word.rb
|
1529
|
-
- test/lib/nano/string/test_chars.rb
|
1530
|
-
- test/lib/nano/string/test_downcase.rb
|
1531
|
-
- test/lib/nano/string/test_index_all.rb
|
1532
|
-
- test/lib/nano/string/test_to_proc.rb
|
1533
|
-
- test/lib/nano/string/test_camelize.rb
|
1534
|
-
- test/lib/nano/string/test_succ.rb
|
1535
|
-
- test/lib/nano/string/test_range_all.rb
|
1536
|
-
- test/lib/nano/string/test_to_date.rb
|
1537
|
-
- test/lib/nano/string/test_fold.rb
|
1538
|
-
- test/lib/nano/string/test_to_a.rb
|
1539
|
-
- test/lib/nano/string/test_to_b.rb
|
1540
|
-
- test/lib/nano/string/test_cmp.rb
|
1541
|
-
- test/lib/nano/string/test_first.rb
|
1542
|
-
- test/lib/nano/string/test_to_const.rb
|
1543
|
-
- test/lib/nano/string/test_indent.rb
|
1544
|
-
- test/lib/nano/string/test_range.rb
|
1545
|
-
- test/lib/nano/string/test_upcase.rb
|
1546
|
-
- test/lib/nano/string/test_range_of_line.rb
|
1547
|
-
- test/lib/nano/string/test_to_re.rb
|
1548
|
-
- test/lib/nano/string/test_at_rand.rb
|
1549
|
-
- test/lib/nano/string/test_words.rb
|
1550
|
-
- test/lib/nano/string/test_unix_crypt.rb
|
1551
|
-
- test/lib/nano/string/test_capitalized.rb
|
1552
|
-
- test/lib/nano/string/test_camelcase.rb
|
1553
|
-
- test/lib/nano/string/test_pop.rb
|
1554
|
-
- test/lib/nano/string/test_align_center.rb
|
1555
|
-
- test/lib/nano/string/test_probability.rb
|
1556
|
-
- test/lib/nano/string/test_to_arr.rb
|
1557
|
-
- test/lib/nano/string/test_word_wrap.rb
|
1558
|
-
- test/lib/nano/string/test_rand_index.rb
|
1559
|
-
- test/lib/nano/string/test_similarity.rb
|
1560
|
-
- test/lib/nano/string/test_rand_byte.rb
|
1561
|
-
- test/lib/nano/string/test_demodulize.rb
|
1562
|
-
- test/lib/nano/string/test_to_time.rb
|
1563
|
-
- test/lib/nano/string/test_shuffle.rb
|
1564
|
-
- test/lib/nano/string/test_quote.rb
|
1565
|
-
- test/lib/nano/string/test_unshift.rb
|
1566
|
-
- test/lib/nano/string/test_natcmp.rb
|
1567
|
-
- test/lib/nano/string/test_mscan.rb
|
1568
|
-
- test/lib/nano/string/test_bracket.rb
|
1569
|
-
- test/lib/nano/string/test_whitespace.rb
|
1570
|
-
- test/lib/nano/string/test_push.rb
|
1571
|
-
- test/lib/nano/string/test_soundex.rb
|
1572
|
-
- test/lib/nano/string/test_lines.rb
|
1573
|
-
- test/lib/nano/string/test_humanize.rb
|
1574
|
-
- test/lib/nano/string/self/test_patterns.rb
|
1575
|
-
- test/lib/nano/string/self/test_rand_letter.rb
|
1576
|
-
- test/lib/nano/string/self/test_interpolate.rb
|
1577
|
-
- test/lib/nano/symbol/test_downcase.rb
|
1578
|
-
- test/lib/nano/symbol/test_to_proc.rb
|
1579
|
-
- test/lib/nano/symbol/test_camelize.rb
|
1580
|
-
- test/lib/nano/symbol/test_succ.rb
|
1581
|
-
- test/lib/nano/symbol/test_underscore.rb
|
1582
|
-
- test/lib/nano/symbol/test_to_const.rb
|
1583
|
-
- test/lib/nano/symbol/test_upcase.rb
|
1584
|
-
- test/lib/nano/symbol/test_not.rb
|
1585
|
-
- test/lib/nano/symbol/test_capitalized.rb
|
1586
|
-
- test/lib/nano/symbol/test_pad.rb
|
1587
|
-
- test/lib/nano/symbol/test_camelcase.rb
|
1588
|
-
- test/lib/nano/symbol/test_capitalize.rb
|
1589
|
-
- test/lib/nano/symbol/test_to_str.rb
|
1590
|
-
- test/lib/nano/numeric/test_succ.rb
|
1591
|
-
- test/lib/nano/numeric/test_to_b.rb
|
1592
|
-
- test/lib/nano/numeric/test_ceil_multiple.rb
|
1593
|
-
- test/lib/nano/binding/self
|
1594
|
-
- test/lib/nano/binding/test_self.rb
|
1595
|
-
- test/lib/nano/binding/test___LINE__.rb
|
1596
|
-
- test/lib/nano/binding/test_local_variables.rb
|
1597
|
-
- test/lib/nano/binding/test_eval.rb
|
1598
|
-
- test/lib/nano/binding/test_call_stack.rb
|
1599
|
-
- test/lib/nano/binding/test_called.rb
|
1600
|
-
- test/lib/nano/binding/test_caller.rb
|
1601
|
-
- test/lib/nano/binding/test_method_name.rb
|
1602
|
-
- test/lib/nano/binding/test_op_store.rb
|
1603
|
-
- test/lib/nano/binding/test_op_fetch.rb
|
1604
|
-
- test/lib/nano/binding/test_defined.rb
|
1605
|
-
- test/lib/nano/binding/self/test_of_caller.rb
|
1606
|
-
- test/lib/nano/ostruct/test___update__.rb
|
1607
|
-
- test/lib/nano/ostruct/test_op_store.rb
|
1608
|
-
- test/lib/nano/ostruct/test_op_fetch.rb
|
1609
|
-
- test/lib/nano/ostruct/test___merge__.rb
|
1610
|
-
- test/lib/nano/integer/test_times_collect.rb
|
1611
|
-
- test/lib/nano/integer/test_factorial.rb
|
1612
|
-
- test/lib/nano/integer/test_times_map.rb
|
1613
|
-
- test/lib/nano/integer/test_ordinal.rb
|
1614
|
-
- test/lib/nano/integer/test_multiple.rb
|
1615
|
-
- test/lib/unit/test_methodprobe.rb
|
1616
|
-
- test/FIXTURE/ls_r
|
1617
|
-
- test/FIXTURE/open_as_string_file
|
1618
|
-
- test/FIXTURE/test_file.txt
|
1619
|
-
- test/FIXTURE/filelist
|
1620
|
-
- test/FIXTURE/test_file2.txt
|
1621
|
-
- test/FIXTURE/read_list_file
|
1622
|
-
- test/FIXTURE/create_file
|
1623
|
-
- test/FIXTURE/ls_r/A
|
1624
|
-
- test/FIXTURE/ls_r/A.txt
|
1625
|
-
- test/FIXTURE/ls_r/A/B
|
1626
|
-
- test/FIXTURE/ls_r/A/B.txt
|
1627
|
-
- test/FIXTURE/ls_r/A/B/C.txt
|
1628
|
-
- test/FIXTURE/filelist/testfile.txt
|
1629
|
-
- test/FIXTURE/filelist/testfile2.txt
|
1630
|
-
- LICENSE/COPYING-GPL
|
1631
|
-
- LICENSE/LICENSE-LGPL
|
1632
|
-
- LICENSE/LICENSE-RUBY
|
1633
|
-
- LICENSE/LICENSE-ART
|
1634
|
-
- LICENSE/LICENSE-MIT
|
1635
|
-
- bench/b_calls.rb
|
1636
|
-
- bench/b_pathname.rb
|
1637
|
-
- bench/b_range.rb
|
1638
|
-
- bench/return-bench.rb
|
1639
|
-
- bench/b_harray.rb
|
32
|
+
- lib
|
33
|
+
- TODO
|
34
|
+
- data
|
35
|
+
- conf
|
36
|
+
- test
|
37
|
+
- Rakefile
|
38
|
+
- README
|
39
|
+
- CHANGELOG
|
40
|
+
- AUTHORS
|
41
|
+
- setup.rb
|
42
|
+
- COPYING
|
43
|
+
- ProjectInfo
|
44
|
+
- lib/facet
|
45
|
+
- lib/facets
|
46
|
+
- lib/facets.rb
|
47
|
+
- lib/facet/dir
|
48
|
+
- lib/facet/date.rb
|
49
|
+
- lib/facet/date
|
50
|
+
- lib/facet/file
|
51
|
+
- lib/facet/hash
|
52
|
+
- lib/facet/proc
|
53
|
+
- lib/facet/time
|
54
|
+
- lib/facet/numeric.rb
|
55
|
+
- lib/facet/fileutils
|
56
|
+
- lib/facet/continuation.rb
|
57
|
+
- lib/facet/string.rb
|
58
|
+
- lib/facet/array
|
59
|
+
- lib/facet/class
|
60
|
+
- lib/facet/float
|
61
|
+
- lib/facet/nilclass
|
62
|
+
- lib/facet/range
|
63
|
+
- lib/facet/fileutils.rb
|
64
|
+
- lib/facet/comparable
|
65
|
+
- lib/facet/symbol.rb
|
66
|
+
- lib/facet/comparable.rb
|
67
|
+
- lib/facet/logger.rb
|
68
|
+
- lib/facet/continuation
|
69
|
+
- lib/facet/ostruct.rb
|
70
|
+
- lib/facet/matchdata
|
71
|
+
- lib/facet/unboundmethod.rb
|
72
|
+
- lib/facet/pathname
|
73
|
+
- lib/facet/file.rb
|
74
|
+
- lib/facet/time.rb
|
75
|
+
- lib/facet/dir.rb
|
76
|
+
- lib/facet/binding.rb
|
77
|
+
- lib/facet/kernel.rb
|
78
|
+
- lib/facet/range.rb
|
79
|
+
- lib/facet/kernel
|
80
|
+
- lib/facet/logger
|
81
|
+
- lib/facet/module
|
82
|
+
- lib/facet/hash.rb
|
83
|
+
- lib/facet/enumerable
|
84
|
+
- lib/facet/regexp
|
85
|
+
- lib/facet/module.rb
|
86
|
+
- lib/facet/unboundmethod
|
87
|
+
- lib/facet/string
|
88
|
+
- lib/facet/symbol
|
89
|
+
- lib/facet/matchdata.rb
|
90
|
+
- lib/facet/nilclass.rb
|
91
|
+
- lib/facet/numeric
|
92
|
+
- lib/facet/array.rb
|
93
|
+
- lib/facet/binding
|
94
|
+
- lib/facet/float.rb
|
95
|
+
- lib/facet/ostruct
|
96
|
+
- lib/facet/integer.rb
|
97
|
+
- lib/facet/regexp.rb
|
98
|
+
- lib/facet/class.rb
|
99
|
+
- lib/facet/enumerable.rb
|
100
|
+
- lib/facet/integer
|
101
|
+
- lib/facet/pathname.rb
|
102
|
+
- lib/facet/proc.rb
|
103
|
+
- lib/facet/dir/self
|
104
|
+
- lib/facet/dir/self/recurse.rb
|
105
|
+
- lib/facet/dir/self/ls_r.rb
|
106
|
+
- lib/facet/dir/self/ancestor.rb
|
107
|
+
- lib/facet/dir/self/ascend.rb
|
108
|
+
- lib/facet/date/to_date.rb
|
109
|
+
- lib/facet/date/days_in_month.rb
|
110
|
+
- lib/facet/date/to_s.rb
|
111
|
+
- lib/facet/date/stamp.rb
|
112
|
+
- lib/facet/date/to_time.rb
|
113
|
+
- lib/facet/date/days_of_month.rb
|
114
|
+
- lib/facet/file/self
|
115
|
+
- lib/facet/file/self/open_as_string.rb
|
116
|
+
- lib/facet/file/self/read_list.rb
|
117
|
+
- lib/facet/file/self/sanitize.rb
|
118
|
+
- lib/facet/file/self/split_all.rb
|
119
|
+
- lib/facet/file/self/create.rb
|
120
|
+
- lib/facet/hash/collate.rb
|
121
|
+
- lib/facet/hash/assert_has_keys.rb
|
122
|
+
- lib/facet/hash/self
|
123
|
+
- lib/facet/hash/each_with_key.rb
|
124
|
+
- lib/facet/hash/join.rb
|
125
|
+
- lib/facet/hash/at.rb
|
126
|
+
- lib/facet/hash/each.rb
|
127
|
+
- lib/facet/hash/each_with_index.rb
|
128
|
+
- lib/facet/hash/graph.rb
|
129
|
+
- lib/facet/hash/to_ostruct.rb
|
130
|
+
- lib/facet/hash/update_values.rb
|
131
|
+
- lib/facet/hash/inverse.rb
|
132
|
+
- lib/facet/hash/rand_value.rb
|
133
|
+
- lib/facet/hash/assert_has_only_keys.rb
|
134
|
+
- lib/facet/hash/keys_to_sym.rb
|
135
|
+
- lib/facet/hash/delete_unless.rb
|
136
|
+
- lib/facet/hash/has_only_keys.rb
|
137
|
+
- lib/facet/hash/replace_each.rb
|
138
|
+
- lib/facet/hash/swap.rb
|
139
|
+
- lib/facet/hash/rand_key.rb
|
140
|
+
- lib/facet/hash/to_h.rb
|
141
|
+
- lib/facet/hash/variablize_keys.rb
|
142
|
+
- lib/facet/hash/keys_to_iv.rb
|
143
|
+
- lib/facet/hash/slice.rb
|
144
|
+
- lib/facet/hash/traverse.rb
|
145
|
+
- lib/facet/hash/shuffle.rb
|
146
|
+
- lib/facet/hash/alias.rb
|
147
|
+
- lib/facet/hash/symoblize_keys.rb
|
148
|
+
- lib/facet/hash/op_store.rb
|
149
|
+
- lib/facet/hash/op_fetch.rb
|
150
|
+
- lib/facet/hash/has_keys.rb
|
151
|
+
- lib/facet/hash/to_ostruct_recurse.rb
|
152
|
+
- lib/facet/hash/swapkey.rb
|
153
|
+
- lib/facet/hash/keys_to_s.rb
|
154
|
+
- lib/facet/hash/weave.rb
|
155
|
+
- lib/facet/hash/op_lshift.rb
|
156
|
+
- lib/facet/hash/update_keys.rb
|
157
|
+
- lib/facet/hash/stringify_keys.rb
|
158
|
+
- lib/facet/hash/rand_pair.rb
|
159
|
+
- lib/facet/hash/update_each.rb
|
160
|
+
- lib/facet/hash/self/zipnew.rb
|
161
|
+
- lib/facet/proc/to_method.rb
|
162
|
+
- lib/facet/proc/compose.rb
|
163
|
+
- lib/facet/proc/op_mul.rb
|
164
|
+
- lib/facet/time/self
|
165
|
+
- lib/facet/time/change.rb
|
166
|
+
- lib/facet/time/to_date.rb
|
167
|
+
- lib/facet/time/to_s.rb
|
168
|
+
- lib/facet/time/stamp.rb
|
169
|
+
- lib/facet/time/to_time.rb
|
170
|
+
- lib/facet/time/elapse.rb
|
171
|
+
- lib/facet/time/self/days_extrema.rb
|
172
|
+
- lib/facet/fileutils/wc.rb
|
173
|
+
- lib/facet/fileutils/tail.rb
|
174
|
+
- lib/facet/fileutils/which.rb
|
175
|
+
- lib/facet/fileutils/safe_ln.rb
|
176
|
+
- lib/facet/fileutils/split_all.rb
|
177
|
+
- lib/facet/fileutils/head.rb
|
178
|
+
- lib/facet/fileutils/slice.rb
|
179
|
+
- lib/facet/fileutils/whereis.rb
|
180
|
+
- lib/facet/array/pull.rb
|
181
|
+
- lib/facet/array/each_with_key.rb
|
182
|
+
- lib/facet/array/merge.rb
|
183
|
+
- lib/facet/array/select.rb
|
184
|
+
- lib/facet/array/last.rb
|
185
|
+
- lib/facet/array/rand_index.rb
|
186
|
+
- lib/facet/array/rand_subset.rb
|
187
|
+
- lib/facet/array/slap.rb
|
188
|
+
- lib/facet/array/tail.rb
|
189
|
+
- lib/facet/array/unzip.rb
|
190
|
+
- lib/facet/array/delete_unless.rb
|
191
|
+
- lib/facet/array/delete_values.rb
|
192
|
+
- lib/facet/array/last_index.rb
|
193
|
+
- lib/facet/array/thru.rb
|
194
|
+
- lib/facet/array/at_rand.rb
|
195
|
+
- lib/facet/array/first.rb
|
196
|
+
- lib/facet/array/foot.rb
|
197
|
+
- lib/facet/array/range.rb
|
198
|
+
- lib/facet/array/to_b.rb
|
199
|
+
- lib/facet/array/to_h.rb
|
200
|
+
- lib/facet/array/mid.rb
|
201
|
+
- lib/facet/array/delete_values_at.rb
|
202
|
+
- lib/facet/array/head.rb
|
203
|
+
- lib/facet/array/pos.rb
|
204
|
+
- lib/facet/array/rotate.rb
|
205
|
+
- lib/facet/array/shuffle.rb
|
206
|
+
- lib/facet/array/op_store.rb
|
207
|
+
- lib/facet/array/op_fetch.rb
|
208
|
+
- lib/facet/array/middle.rb
|
209
|
+
- lib/facet/array/pick.rb
|
210
|
+
- lib/facet/array/to_hash.rb
|
211
|
+
- lib/facet/array/body.rb
|
212
|
+
- lib/facet/array/store.rb
|
213
|
+
- lib/facet/class/descendents.rb
|
214
|
+
- lib/facet/class/remove_subclasses.rb
|
215
|
+
- lib/facet/class/remove_descendents.rb
|
216
|
+
- lib/facet/class/subclasses.rb
|
217
|
+
- lib/facet/class/by_name.rb
|
218
|
+
- lib/facet/float/approx.rb
|
219
|
+
- lib/facet/float/round_at.rb
|
220
|
+
- lib/facet/float/round_to.rb
|
221
|
+
- lib/facet/nilclass/size.rb
|
222
|
+
- lib/facet/nilclass/length.rb
|
223
|
+
- lib/facet/nilclass/empty.rb
|
224
|
+
- lib/facet/nilclass/to_f.rb
|
225
|
+
- lib/facet/nilclass/to_h.rb
|
226
|
+
- lib/facet/nilclass/op_fetch.rb
|
227
|
+
- lib/facet/nilclass/include.rb
|
228
|
+
- lib/facet/range/within.rb
|
229
|
+
- lib/facet/range/umbrella.rb
|
230
|
+
- lib/facet/range/to_r.rb
|
231
|
+
- lib/facet/range/to_range.rb
|
232
|
+
- lib/facet/comparable/cap.rb
|
233
|
+
- lib/facet/comparable/cmp.rb
|
234
|
+
- lib/facet/comparable/at_least.rb
|
235
|
+
- lib/facet/comparable/at_most.rb
|
236
|
+
- lib/facet/comparable/clip.rb
|
237
|
+
- lib/facet/continuation/self
|
238
|
+
- lib/facet/continuation/self/create.rb
|
239
|
+
- lib/facet/matchdata/matchtree.rb
|
240
|
+
- lib/facet/matchdata/matchset.rb
|
241
|
+
- lib/facet/matchdata/match.rb
|
242
|
+
- lib/facet/pathname/descend.rb
|
243
|
+
- lib/facet/pathname/ascend.rb
|
244
|
+
- lib/facet/kernel/call_stack.rb
|
245
|
+
- lib/facet/kernel/p.rb
|
246
|
+
- lib/facet/kernel/get_by_id.rb
|
247
|
+
- lib/facet/kernel/constant.rb
|
248
|
+
- lib/facet/kernel/copy.rb
|
249
|
+
- lib/facet/kernel/demo.rb
|
250
|
+
- lib/facet/kernel/resc.rb
|
251
|
+
- lib/facet/kernel/__meta__.rb
|
252
|
+
- lib/facet/kernel/set_with.rb
|
253
|
+
- lib/facet/kernel/require_all.rb
|
254
|
+
- lib/facet/kernel/as.rb
|
255
|
+
- lib/facet/kernel/fn.rb
|
256
|
+
- lib/facet/kernel/in.rb
|
257
|
+
- lib/facet/kernel/is.rb
|
258
|
+
- lib/facet/kernel/me.rb
|
259
|
+
- lib/facet/kernel/to_bool.rb
|
260
|
+
- lib/facet/kernel/require_esc.rb
|
261
|
+
- lib/facet/kernel/singleton.rb
|
262
|
+
- lib/facet/kernel/false.rb
|
263
|
+
- lib/facet/kernel/instance_assign.rb
|
264
|
+
- lib/facet/kernel/autoreload.rb
|
265
|
+
- lib/facet/kernel/methods.rb
|
266
|
+
- lib/facet/kernel/unuri.rb
|
267
|
+
- lib/facet/kernel/autoreload_glob.rb
|
268
|
+
- lib/facet/kernel/assign_from.rb
|
269
|
+
- lib/facet/kernel/__DIR__.rb
|
270
|
+
- lib/facet/kernel/__class__.rb
|
271
|
+
- lib/facet/kernel/meta.rb
|
272
|
+
- lib/facet/kernel/send_as.rb
|
273
|
+
- lib/facet/kernel/this.rb
|
274
|
+
- lib/facet/kernel/nack.rb
|
275
|
+
- lib/facet/kernel/silence_warnings.rb
|
276
|
+
- lib/facet/kernel/bug.rb
|
277
|
+
- lib/facet/kernel/method_name.rb
|
278
|
+
- lib/facet/kernel/generate_method_name.rb
|
279
|
+
- lib/facet/kernel/with_reader.rb
|
280
|
+
- lib/facet/kernel/to_b.rb
|
281
|
+
- lib/facet/kernel/supermethod.rb
|
282
|
+
- lib/facet/kernel/op_esc.rb
|
283
|
+
- lib/facet/kernel/maybe.rb
|
284
|
+
- lib/facet/kernel/require_local.rb
|
285
|
+
- lib/facet/kernel/true.rb
|
286
|
+
- lib/facet/kernel/with_writer.rb
|
287
|
+
- lib/facet/kernel/complete.rb
|
288
|
+
- lib/facet/kernel/object_class.rb
|
289
|
+
- lib/facet/kernel/new.rb
|
290
|
+
- lib/facet/kernel/with_accessor.rb
|
291
|
+
- lib/facet/kernel/returning.rb
|
292
|
+
- lib/facet/kernel/adhoc.rb
|
293
|
+
- lib/facet/kernel/own.rb
|
294
|
+
- lib/facet/kernel/instvar.rb
|
295
|
+
- lib/facet/kernel/here.rb
|
296
|
+
- lib/facet/kernel/called.rb
|
297
|
+
- lib/facet/kernel/metaclass.rb
|
298
|
+
- lib/facet/kernel/assign_with.rb
|
299
|
+
- lib/facet/kernel/val.rb
|
300
|
+
- lib/facet/kernel/uri.rb
|
301
|
+
- lib/facet/kernel/set_from.rb
|
302
|
+
- lib/facet/kernel/eigenclass.rb
|
303
|
+
- lib/facet/kernel/warn_with_line.rb
|
304
|
+
- lib/facet/kernel/object_hexid.rb
|
305
|
+
- lib/facet/kernel/method.rb
|
306
|
+
- lib/facet/kernel/deep_copy.rb
|
307
|
+
- lib/facet/kernel/superior.rb
|
308
|
+
- lib/facet/kernel/bool.rb
|
309
|
+
- lib/facet/kernel/require_facet.rb
|
310
|
+
- lib/facet/kernel/silently.rb
|
311
|
+
- lib/facet/logger/format.rb
|
312
|
+
- lib/facet/logger/format_message.rb
|
313
|
+
- lib/facet/module/redefine_method.rb
|
314
|
+
- lib/facet/module/redirect_method.rb
|
315
|
+
- lib/facet/module/initializer.rb
|
316
|
+
- lib/facet/module/clone_renaming.rb
|
317
|
+
- lib/facet/module/undef.rb
|
318
|
+
- lib/facet/module/shadow_all.rb
|
319
|
+
- lib/facet/module/clone_removing.rb
|
320
|
+
- lib/facet/module/is.rb
|
321
|
+
- lib/facet/module/modspace.rb
|
322
|
+
- lib/facet/module/instance_methods.rb
|
323
|
+
- lib/facet/module/attr_tester.rb
|
324
|
+
- lib/facet/module/integrate.rb
|
325
|
+
- lib/facet/module/basename.rb
|
326
|
+
- lib/facet/module/generate_instance_method_name.rb
|
327
|
+
- lib/facet/module/redirect.rb
|
328
|
+
- lib/facet/module/shadow_method.rb
|
329
|
+
- lib/facet/module/alias_module_function.rb
|
330
|
+
- lib/facet/module/namespace.rb
|
331
|
+
- lib/facet/module/abstract.rb
|
332
|
+
- lib/facet/module/cattr_reader.rb
|
333
|
+
- lib/facet/module/nesting.rb
|
334
|
+
- lib/facet/module/wrap_method.rb
|
335
|
+
- lib/facet/module/cattr_writer.rb
|
336
|
+
- lib/facet/module/ancestor.rb
|
337
|
+
- lib/facet/module/include_as.rb
|
338
|
+
- lib/facet/module/rename_method.rb
|
339
|
+
- lib/facet/module/attr_setter.rb
|
340
|
+
- lib/facet/module/rename.rb
|
341
|
+
- lib/facet/module/dirname.rb
|
342
|
+
- lib/facet/module/attr.rb
|
343
|
+
- lib/facet/module/remove.rb
|
344
|
+
- lib/facet/module/sort_on.rb
|
345
|
+
- lib/facet/module/cattr_accessor.rb
|
346
|
+
- lib/facet/module/equate_on.rb
|
347
|
+
- lib/facet/module/redef.rb
|
348
|
+
- lib/facet/module/clone_using.rb
|
349
|
+
- lib/facet/module/by_name.rb
|
350
|
+
- lib/facet/module/memoize.rb
|
351
|
+
- lib/facet/module/wrap.rb
|
352
|
+
- lib/facet/module/revisal.rb
|
353
|
+
- lib/facet/enumerable/self
|
354
|
+
- lib/facet/enumerable/find_collisions.rb
|
355
|
+
- lib/facet/enumerable/map_with_counter.rb
|
356
|
+
- lib/facet/enumerable/each_unique_pair.rb
|
357
|
+
- lib/facet/enumerable/ew.rb
|
358
|
+
- lib/facet/enumerable/graph.rb
|
359
|
+
- lib/facet/enumerable/elementwise.rb
|
360
|
+
- lib/facet/enumerable/filter_collect.rb
|
361
|
+
- lib/facet/enumerable/map_with_index.rb
|
362
|
+
- lib/facet/enumerable/ideal_entropy.rb
|
363
|
+
- lib/facet/enumerable/where.rb
|
364
|
+
- lib/facet/enumerable/partition_by.rb
|
365
|
+
- lib/facet/enumerable/nonuniq.rb
|
366
|
+
- lib/facet/enumerable/each_permutation.rb
|
367
|
+
- lib/facet/enumerable/probability.rb
|
368
|
+
- lib/facet/enumerable/collect_with_counter.rb
|
369
|
+
- lib/facet/enumerable/collect_with_index.rb
|
370
|
+
- lib/facet/enumerable/to_h.rb
|
371
|
+
- lib/facet/enumerable/each_by.rb
|
372
|
+
- lib/facet/enumerable/each_pair.rb
|
373
|
+
- lib/facet/enumerable/every.rb
|
374
|
+
- lib/facet/enumerable/compact_collect.rb
|
375
|
+
- lib/facet/enumerable/one.rb
|
376
|
+
- lib/facet/enumerable/none.rb
|
377
|
+
- lib/facet/enumerable/project.rb
|
378
|
+
- lib/facet/enumerable/op_pow.rb
|
379
|
+
- lib/facet/enumerable/frequency.rb
|
380
|
+
- lib/facet/enumerable/compact_map.rb
|
381
|
+
- lib/facet/enumerable/filter_map.rb
|
382
|
+
- lib/facet/enumerable/permute.rb
|
383
|
+
- lib/facet/enumerable/occur.rb
|
384
|
+
- lib/facet/enumerable/commonality.rb
|
385
|
+
- lib/facet/enumerable/each_combination.rb
|
386
|
+
- lib/facet/enumerable/each_slice.rb
|
387
|
+
- lib/facet/enumerable/entropy.rb
|
388
|
+
- lib/facet/enumerable/each_with_counter.rb
|
389
|
+
- lib/facet/enumerable/uniq_by.rb
|
390
|
+
- lib/facet/enumerable/cross.rb
|
391
|
+
- lib/facet/enumerable/self/combinations.rb
|
392
|
+
- lib/facet/enumerable/self/cross.rb
|
393
|
+
- lib/facet/regexp/to_regexp.rb
|
394
|
+
- lib/facet/regexp/to_re.rb
|
395
|
+
- lib/facet/regexp/arity.rb
|
396
|
+
- lib/facet/unboundmethod/name.rb
|
397
|
+
- lib/facet/string/self
|
398
|
+
- lib/facet/string/pull.rb
|
399
|
+
- lib/facet/string/push.rb
|
400
|
+
- lib/facet/string/uppercase.rb
|
401
|
+
- lib/facet/string/shift.rb
|
402
|
+
- lib/facet/string/dresner.rb
|
403
|
+
- lib/facet/string/plural.rb
|
404
|
+
- lib/facet/string/word_filter.rb
|
405
|
+
- lib/facet/string/unix_crypt.rb
|
406
|
+
- lib/facet/string/camelcase.rb
|
407
|
+
- lib/facet/string/humanize.rb
|
408
|
+
- lib/facet/string/at.rb
|
409
|
+
- lib/facet/string/margin.rb
|
410
|
+
- lib/facet/string/dequote.rb
|
411
|
+
- lib/facet/string/word_wrap.rb
|
412
|
+
- lib/facet/string/last.rb
|
413
|
+
- lib/facet/string/unpack.rb
|
414
|
+
- lib/facet/string/rand_index.rb
|
415
|
+
- lib/facet/string/nchar.rb
|
416
|
+
- lib/facet/string/singular.rb
|
417
|
+
- lib/facet/string/brief.rb
|
418
|
+
- lib/facet/string/similarity.rb
|
419
|
+
- lib/facet/string/rand_byte.rb
|
420
|
+
- lib/facet/string/to_proc.rb
|
421
|
+
- lib/facet/string/blank.rb
|
422
|
+
- lib/facet/string/demodulize.rb
|
423
|
+
- lib/facet/string/to_date.rb
|
424
|
+
- lib/facet/string/chars.rb
|
425
|
+
- lib/facet/string/slap.rb
|
426
|
+
- lib/facet/string/starts_with.rb
|
427
|
+
- lib/facet/string/first_char.rb
|
428
|
+
- lib/facet/string/capitalized.rb
|
429
|
+
- lib/facet/string/bytes.rb
|
430
|
+
- lib/facet/string/basename.rb
|
431
|
+
- lib/facet/string/downcase.rb
|
432
|
+
- lib/facet/string/succ.rb
|
433
|
+
- lib/facet/string/probability.rb
|
434
|
+
- lib/facet/string/cmp.rb
|
435
|
+
- lib/facet/string/whitespace.rb
|
436
|
+
- lib/facet/string/at_rand.rb
|
437
|
+
- lib/facet/string/first.rb
|
438
|
+
- lib/facet/string/fold.rb
|
439
|
+
- lib/facet/string/camelize.rb
|
440
|
+
- lib/facet/string/unbracket.rb
|
441
|
+
- lib/facet/string/range.rb
|
442
|
+
- lib/facet/string/to_a.rb
|
443
|
+
- lib/facet/string/to_b.rb
|
444
|
+
- lib/facet/string/to_re.rb
|
445
|
+
- lib/facet/string/last_char.rb
|
446
|
+
- lib/facet/string/to_rx.rb
|
447
|
+
- lib/facet/string/line_wrap.rb
|
448
|
+
- lib/facet/string/tabto.rb
|
449
|
+
- lib/facet/string/align_center.rb
|
450
|
+
- lib/facet/string/words.rb
|
451
|
+
- lib/facet/string/indent.rb
|
452
|
+
- lib/facet/string/align_right.rb
|
453
|
+
- lib/facet/string/upcase.rb
|
454
|
+
- lib/facet/string/format.rb
|
455
|
+
- lib/facet/string/to_const.rb
|
456
|
+
- lib/facet/string/pop.rb
|
457
|
+
- lib/facet/string/align_left.rb
|
458
|
+
- lib/facet/string/tab.rb
|
459
|
+
- lib/facet/string/range_of_line.rb
|
460
|
+
- lib/facet/string/frequency.rb
|
461
|
+
- lib/facet/string/lowercase.rb
|
462
|
+
- lib/facet/string/to_time.rb
|
463
|
+
- lib/facet/string/to_arr.rb
|
464
|
+
- lib/facet/string/ordinal.rb
|
465
|
+
- lib/facet/string/shuffle.rb
|
466
|
+
- lib/facet/string/each_char.rb
|
467
|
+
- lib/facet/string/unshift.rb
|
468
|
+
- lib/facet/string/each_word.rb
|
469
|
+
- lib/facet/string/bracket.rb
|
470
|
+
- lib/facet/string/index_all.rb
|
471
|
+
- lib/facet/string/quote.rb
|
472
|
+
- lib/facet/string/regesc.rb
|
473
|
+
- lib/facet/string/soundex.rb
|
474
|
+
- lib/facet/string/range_all.rb
|
475
|
+
- lib/facet/string/mscan.rb
|
476
|
+
- lib/facet/string/ends_with.rb
|
477
|
+
- lib/facet/string/shatter.rb
|
478
|
+
- lib/facet/string/underscore.rb
|
479
|
+
- lib/facet/string/natcmp.rb
|
480
|
+
- lib/facet/string/lines.rb
|
481
|
+
- lib/facet/string/self/patterns.rb
|
482
|
+
- lib/facet/string/self/rand_letter.rb
|
483
|
+
- lib/facet/string/self/random.rb
|
484
|
+
- lib/facet/string/self/format.rb
|
485
|
+
- lib/facet/string/self/interpolate.rb
|
486
|
+
- lib/facet/symbol/camelcase.rb
|
487
|
+
- lib/facet/symbol/to_proc.rb
|
488
|
+
- lib/facet/symbol/capitalize.rb
|
489
|
+
- lib/facet/symbol/capitalized.rb
|
490
|
+
- lib/facet/symbol/downcase.rb
|
491
|
+
- lib/facet/symbol/succ.rb
|
492
|
+
- lib/facet/symbol/camelize.rb
|
493
|
+
- lib/facet/symbol/upcase.rb
|
494
|
+
- lib/facet/symbol/not.rb
|
495
|
+
- lib/facet/symbol/pad.rb
|
496
|
+
- lib/facet/symbol/to_const.rb
|
497
|
+
- lib/facet/symbol/underscore.rb
|
498
|
+
- lib/facet/symbol/to_str.rb
|
499
|
+
- lib/facet/numeric/succ.rb
|
500
|
+
- lib/facet/numeric/to_b.rb
|
501
|
+
- lib/facet/numeric/ceil_multiple.rb
|
502
|
+
- lib/facet/numeric/pred.rb
|
503
|
+
- lib/facet/binding/call_stack.rb
|
504
|
+
- lib/facet/binding/self
|
505
|
+
- lib/facet/binding/self.rb
|
506
|
+
- lib/facet/binding/__DIR__.rb
|
507
|
+
- lib/facet/binding/__LINE__.rb
|
508
|
+
- lib/facet/binding/eval.rb
|
509
|
+
- lib/facet/binding/method_name.rb
|
510
|
+
- lib/facet/binding/called.rb
|
511
|
+
- lib/facet/binding/caller.rb
|
512
|
+
- lib/facet/binding/__FILE__.rb
|
513
|
+
- lib/facet/binding/defined.rb
|
514
|
+
- lib/facet/binding/op_store.rb
|
515
|
+
- lib/facet/binding/op_fetch.rb
|
516
|
+
- lib/facet/binding/local_variables.rb
|
517
|
+
- lib/facet/binding/self/of_caller.rb
|
518
|
+
- lib/facet/ostruct/__update__.rb
|
519
|
+
- lib/facet/ostruct/__merge__.rb
|
520
|
+
- lib/facet/ostruct/to_h.rb
|
521
|
+
- lib/facet/ostruct/op_store.rb
|
522
|
+
- lib/facet/ostruct/op_fetch.rb
|
523
|
+
- lib/facet/ostruct/__table__.rb
|
524
|
+
- lib/facet/integer/multiple.rb
|
525
|
+
- lib/facet/integer/times_collect.rb
|
526
|
+
- lib/facet/integer/times_map.rb
|
527
|
+
- lib/facet/integer/fact.rb
|
528
|
+
- lib/facet/integer/even.rb
|
529
|
+
- lib/facet/integer/fac.rb
|
530
|
+
- lib/facet/integer/odd.rb
|
531
|
+
- lib/facet/integer/factorial.rb
|
532
|
+
- lib/facet/integer/ordinal.rb
|
533
|
+
- lib/facets/group
|
534
|
+
- lib/facets/english
|
535
|
+
- lib/facets/support
|
536
|
+
- lib/facets/method
|
537
|
+
- lib/facets/group/nilasemptiness.rb
|
538
|
+
- lib/facets/group/inflect.rb
|
539
|
+
- lib/facets/group/random.rb
|
540
|
+
- lib/facets/group/stringasarray.rb
|
541
|
+
- lib/facets/english/multipliers.rb
|
542
|
+
- lib/facets/english/bytes.rb
|
543
|
+
- lib/facets/english/time.rb
|
544
|
+
- lib/facets/english/ormsupport.rb
|
545
|
+
- lib/facets/support/functor.rb
|
546
|
+
- lib/facets/method/README
|
547
|
+
- data/facets
|
548
|
+
- data/facets/index.yml
|
549
|
+
- conf/facets
|
550
|
+
- conf/facets/noauto
|
551
|
+
- test/lib
|
552
|
+
- test/testdir.rb
|
553
|
+
- test/FIXTURE
|
554
|
+
- test/lib/facet
|
555
|
+
- test/lib/facets
|
556
|
+
- test/lib/facet/dir
|
557
|
+
- test/lib/facet/date
|
558
|
+
- test/lib/facet/file
|
559
|
+
- test/lib/facet/hash
|
560
|
+
- test/lib/facet/proc
|
561
|
+
- test/lib/facet/time
|
562
|
+
- test/lib/facet/fileutils
|
563
|
+
- test/lib/facet/array
|
564
|
+
- test/lib/facet/class
|
565
|
+
- test/lib/facet/float
|
566
|
+
- test/lib/facet/nilclass
|
567
|
+
- test/lib/facet/range
|
568
|
+
- test/lib/facet/comparable
|
569
|
+
- test/lib/facet/continuation
|
570
|
+
- test/lib/facet/matchdata
|
571
|
+
- test/lib/facet/kernel
|
572
|
+
- test/lib/facet/module
|
573
|
+
- test/lib/facet/enumerable
|
574
|
+
- test/lib/facet/regexp
|
575
|
+
- test/lib/facet/string
|
576
|
+
- test/lib/facet/symbol
|
577
|
+
- test/lib/facet/numeric
|
578
|
+
- test/lib/facet/binding
|
579
|
+
- test/lib/facet/ostruct
|
580
|
+
- test/lib/facet/integer
|
581
|
+
- test/lib/facet/dir/self
|
582
|
+
- test/lib/facet/dir/self/test_ls_r.rb
|
583
|
+
- test/lib/facet/dir/self/test_ancestor.rb
|
584
|
+
- test/lib/facet/dir/self/test_ascend.rb
|
585
|
+
- test/lib/facet/date/test_days_in_month.rb
|
586
|
+
- test/lib/facet/date/test_to_date.rb
|
587
|
+
- test/lib/facet/date/test_to_s.rb
|
588
|
+
- test/lib/facet/date/test_days_of_month.rb
|
589
|
+
- test/lib/facet/date/test_stamp.rb
|
590
|
+
- test/lib/facet/date/test_to_time.rb
|
591
|
+
- test/lib/facet/file/self
|
592
|
+
- test/lib/facet/file/self/test_split_all.rb
|
593
|
+
- test/lib/facet/file/self/test_sanitize.rb
|
594
|
+
- test/lib/facet/file/self/test_open_as_string.rb
|
595
|
+
- test/lib/facet/file/self/test_create.rb
|
596
|
+
- test/lib/facet/file/self/test_read_list.rb
|
597
|
+
- test/lib/facet/hash/self
|
598
|
+
- test/lib/facet/hash/test_update_values.rb
|
599
|
+
- test/lib/facet/hash/test_at.rb
|
600
|
+
- test/lib/facet/hash/test_each.rb
|
601
|
+
- test/lib/facet/hash/test_collate.rb
|
602
|
+
- test/lib/facet/hash/test_update_keys.rb
|
603
|
+
- test/lib/facet/hash/test_graph.rb
|
604
|
+
- test/lib/facet/hash/test_update_each.rb
|
605
|
+
- test/lib/facet/hash/test_has_only_keys.rb
|
606
|
+
- test/lib/facet/hash/test_inverse.rb
|
607
|
+
- test/lib/facet/hash/test_rand_key.rb
|
608
|
+
- test/lib/facet/hash/test_keys_to_s.rb
|
609
|
+
- test/lib/facet/hash/test_swap.rb
|
610
|
+
- test/lib/facet/hash/test_assert_has_keys.rb
|
611
|
+
- test/lib/facet/hash/test_to_h.rb
|
612
|
+
- test/lib/facet/hash/test_op_lshift.rb
|
613
|
+
- test/lib/facet/hash/test_rand_pair.rb
|
614
|
+
- test/lib/facet/hash/test_replace_each.rb
|
615
|
+
- test/lib/facet/hash/test_each_with_index.rb
|
616
|
+
- test/lib/facet/hash/test_keys_to_sym.rb
|
617
|
+
- test/lib/facet/hash/test_traverse.rb
|
618
|
+
- test/lib/facet/hash/test_slice.rb
|
619
|
+
- test/lib/facet/hash/test_to_ostruct.rb
|
620
|
+
- test/lib/facet/hash/test_op_fetch.rb
|
621
|
+
- test/lib/facet/hash/test_has_keys.rb
|
622
|
+
- test/lib/facet/hash/test_assert_has_only_keys.rb
|
623
|
+
- test/lib/facet/hash/test_alias.rb
|
624
|
+
- test/lib/facet/hash/test_rand_value.rb
|
625
|
+
- test/lib/facet/hash/test_shuffle.rb
|
626
|
+
- test/lib/facet/hash/test_to_ostruct_recurse.rb
|
627
|
+
- test/lib/facet/hash/test_each_with_key.rb
|
628
|
+
- test/lib/facet/hash/test_weave.rb
|
629
|
+
- test/lib/facet/hash/test_swapkey.rb
|
630
|
+
- test/lib/facet/hash/self/test_zipnew.rb
|
631
|
+
- test/lib/facet/proc/test_compose.rb
|
632
|
+
- test/lib/facet/proc/test_to_method.rb
|
633
|
+
- test/lib/facet/time/test_change.rb
|
634
|
+
- test/lib/facet/time/test_to_date.rb
|
635
|
+
- test/lib/facet/time/test_to_s.rb
|
636
|
+
- test/lib/facet/time/test_stamp.rb
|
637
|
+
- test/lib/facet/time/test_elapse.rb
|
638
|
+
- test/lib/facet/time/test_to_time.rb
|
639
|
+
- test/lib/facet/fileutils/test_wc.rb
|
640
|
+
- test/lib/facet/fileutils/test_which.rb
|
641
|
+
- test/lib/facet/fileutils/test_slice.rb
|
642
|
+
- test/lib/facet/array/test_merge.rb
|
643
|
+
- test/lib/facet/array/test_select.rb
|
644
|
+
- test/lib/facet/array/test_slap.rb
|
645
|
+
- test/lib/facet/array/test_delete_unless.rb
|
646
|
+
- test/lib/facet/array/test_delete_values.rb
|
647
|
+
- test/lib/facet/array/test_thru.rb
|
648
|
+
- test/lib/facet/array/test_to_b.rb
|
649
|
+
- test/lib/facet/array/test_to_h.rb
|
650
|
+
- test/lib/facet/array/test_first.rb
|
651
|
+
- test/lib/facet/array/test_rand_subset.rb
|
652
|
+
- test/lib/facet/array/test_range.rb
|
653
|
+
- test/lib/facet/array/test_head.rb
|
654
|
+
- test/lib/facet/array/test_at_rand.rb
|
655
|
+
- test/lib/facet/array/test_mid.rb
|
656
|
+
- test/lib/facet/array/test_rotate.rb
|
657
|
+
- test/lib/facet/array/test_pos.rb
|
658
|
+
- test/lib/facet/array/test_op_store.rb
|
659
|
+
- test/lib/facet/array/test_op_fetch.rb
|
660
|
+
- test/lib/facet/array/test_rand_index.rb
|
661
|
+
- test/lib/facet/array/test_delete_values_at.rb
|
662
|
+
- test/lib/facet/array/test_pick.rb
|
663
|
+
- test/lib/facet/array/test_middle.rb
|
664
|
+
- test/lib/facet/array/test_shuffle.rb
|
665
|
+
- test/lib/facet/array/test_last_index.rb
|
666
|
+
- test/lib/facet/array/test_pull.rb
|
667
|
+
- test/lib/facet/array/test_to_hash.rb
|
668
|
+
- test/lib/facet/class/test_remove_descendents.rb
|
669
|
+
- test/lib/facet/class/test_descendents.rb
|
670
|
+
- test/lib/facet/float/test_approx.rb
|
671
|
+
- test/lib/facet/float/test_round_at.rb
|
672
|
+
- test/lib/facet/float/test_round_to.rb
|
673
|
+
- test/lib/facet/nilclass/test_size.rb
|
674
|
+
- test/lib/facet/nilclass/test_to_f.rb
|
675
|
+
- test/lib/facet/nilclass/test_to_h.rb
|
676
|
+
- test/lib/facet/nilclass/test_empty.rb
|
677
|
+
- test/lib/facet/nilclass/test_op_fetch.rb
|
678
|
+
- test/lib/facet/nilclass/test_include.rb
|
679
|
+
- test/lib/facet/range/test_umbrella.rb
|
680
|
+
- test/lib/facet/range/test_to_r.rb
|
681
|
+
- test/lib/facet/range/test_to_range.rb
|
682
|
+
- test/lib/facet/range/test_within.rb
|
683
|
+
- test/lib/facet/comparable/test_cmp.rb
|
684
|
+
- test/lib/facet/comparable/test_at_least.rb
|
685
|
+
- test/lib/facet/comparable/test_clip.rb
|
686
|
+
- test/lib/facet/continuation/self
|
687
|
+
- test/lib/facet/continuation/self/test_create.rb
|
688
|
+
- test/lib/facet/matchdata/test_match.rb
|
689
|
+
- test/lib/facet/matchdata/test_matchtree.rb
|
690
|
+
- test/lib/facet/kernel/test_resc.rb
|
691
|
+
- test/lib/facet/kernel/test_as.rb
|
692
|
+
- test/lib/facet/kernel/test_fn.rb
|
693
|
+
- test/lib/facet/kernel/test_in.rb
|
694
|
+
- test/lib/facet/kernel/test_returning.rb
|
695
|
+
- test/lib/facet/kernel/test_metaclass.rb
|
696
|
+
- test/lib/facet/kernel/test_to_bool.rb
|
697
|
+
- test/lib/facet/kernel/test_require_all.rb
|
698
|
+
- test/lib/facet/kernel/test_this.rb
|
699
|
+
- test/lib/facet/kernel/test_deep_copy.rb
|
700
|
+
- test/lib/facet/kernel/test_methods.rb
|
701
|
+
- test/lib/facet/kernel/test_require_esc.rb
|
702
|
+
- test/lib/facet/kernel/test_to_b.rb
|
703
|
+
- test/lib/facet/kernel/test_with_accessor.rb
|
704
|
+
- test/lib/facet/kernel/test_bug.rb
|
705
|
+
- test/lib/facet/kernel/test_send_as.rb
|
706
|
+
- test/lib/facet/kernel/test_call_stack.rb
|
707
|
+
- test/lib/facet/kernel/test_assign_from.rb
|
708
|
+
- test/lib/facet/kernel/test_get_by_id.rb
|
709
|
+
- test/lib/facet/kernel/test_maybe.rb
|
710
|
+
- test/lib/facet/kernel/test_here.rb
|
711
|
+
- test/lib/facet/kernel/test_called.rb
|
712
|
+
- test/lib/facet/kernel/test_new.rb
|
713
|
+
- test/lib/facet/kernel/test_set_from.rb
|
714
|
+
- test/lib/facet/kernel/test_method_name.rb
|
715
|
+
- test/lib/facet/kernel/test_object_class.rb
|
716
|
+
- test/lib/facet/kernel/test_val.rb
|
717
|
+
- test/lib/facet/kernel/test_uri.rb
|
718
|
+
- test/lib/facet/kernel/test_singleton.rb
|
719
|
+
- test/lib/facet/kernel/test_supermethod.rb
|
720
|
+
- test/lib/facet/kernel/test_superior.rb
|
721
|
+
- test/lib/facet/kernel/test_method.rb
|
722
|
+
- test/lib/facet/kernel/test_require_facet.rb
|
723
|
+
- test/lib/facet/kernel/test_bool.rb
|
724
|
+
- test/lib/facet/kernel/test___class__.rb
|
725
|
+
- test/lib/facet/kernel/test_generate_method_name.rb
|
726
|
+
- test/lib/facet/kernel/test_silently.rb
|
727
|
+
- test/lib/facet/kernel/test_assign_with.rb
|
728
|
+
- test/lib/facet/kernel/test_constant.rb
|
729
|
+
- test/lib/facet/kernel/test_object_hexid.rb
|
730
|
+
- test/lib/facet/kernel/test_copy.rb
|
731
|
+
- test/lib/facet/kernel/test_demo.rb
|
732
|
+
- test/lib/facet/kernel/test_set_with.rb
|
733
|
+
- test/lib/facet/module/test_modspace.rb
|
734
|
+
- test/lib/facet/module/test_namespace.rb
|
735
|
+
- test/lib/facet/module/test_undef.rb
|
736
|
+
- test/lib/facet/module/test_by_name.rb
|
737
|
+
- test/lib/facet/module/test_memoize.rb
|
738
|
+
- test/lib/facet/module/test_revisal.rb
|
739
|
+
- test/lib/facet/module/test_clone_using.rb
|
740
|
+
- test/lib/facet/module/test_initializer.rb
|
741
|
+
- test/lib/facet/module/test_include_as.rb
|
742
|
+
- test/lib/facet/module/test_basename.rb
|
743
|
+
- test/lib/facet/module/test_shadow_method.rb
|
744
|
+
- test/lib/facet/module/test_instance_methods.rb
|
745
|
+
- test/lib/facet/module/test_redirect.rb
|
746
|
+
- test/lib/facet/module/test_redefine_method.rb
|
747
|
+
- test/lib/facet/module/test_redirect_method.rb
|
748
|
+
- test/lib/facet/module/test_abstract.rb
|
749
|
+
- test/lib/facet/module/test_equate_on.rb
|
750
|
+
- test/lib/facet/module/test_alias_module_function.rb
|
751
|
+
- test/lib/facet/module/test_ancestor.rb
|
752
|
+
- test/lib/facet/module/test_rename_method.rb
|
753
|
+
- test/lib/facet/module/test_nesting.rb
|
754
|
+
- test/lib/facet/module/test_rename.rb
|
755
|
+
- test/lib/facet/module/test_remove.rb
|
756
|
+
- test/lib/facet/module/test_wrap_method.rb
|
757
|
+
- test/lib/facet/module/test_wrap.rb
|
758
|
+
- test/lib/facet/module/test_dirname.rb
|
759
|
+
- test/lib/facet/module/test_integrate.rb
|
760
|
+
- test/lib/facet/module/test_redef.rb
|
761
|
+
- test/lib/facet/module/test_cattr_accessor.rb
|
762
|
+
- test/lib/facet/module/test_sort_on.rb
|
763
|
+
- test/lib/facet/module/test_generate_instance_method_name.rb
|
764
|
+
- test/lib/facet/enumerable/self
|
765
|
+
- test/lib/facet/enumerable/test_ew.rb
|
766
|
+
- test/lib/facet/enumerable/test_each_pair.rb
|
767
|
+
- test/lib/facet/enumerable/test_graph.rb
|
768
|
+
- test/lib/facet/enumerable/test_frequency.rb
|
769
|
+
- test/lib/facet/enumerable/test_ideal_entropy.rb
|
770
|
+
- test/lib/facet/enumerable/test_filter_collect.rb
|
771
|
+
- test/lib/facet/enumerable/test_each_unique_pair.rb
|
772
|
+
- test/lib/facet/enumerable/test_each_slice.rb
|
773
|
+
- test/lib/facet/enumerable/test_find_collisions.rb
|
774
|
+
- test/lib/facet/enumerable/test_to_h.rb
|
775
|
+
- test/lib/facet/enumerable/test_partition_by.rb
|
776
|
+
- test/lib/facet/enumerable/test_collect_with_index.rb
|
777
|
+
- test/lib/facet/enumerable/test_none.rb
|
778
|
+
- test/lib/facet/enumerable/test_every.rb
|
779
|
+
- test/lib/facet/enumerable/test_op_pow.rb
|
780
|
+
- test/lib/facet/enumerable/test_one.rb
|
781
|
+
- test/lib/facet/enumerable/test_probability.rb
|
782
|
+
- test/lib/facet/enumerable/test_occur.rb
|
783
|
+
- test/lib/facet/enumerable/test_permute.rb
|
784
|
+
- test/lib/facet/enumerable/test_each_combination.rb
|
785
|
+
- test/lib/facet/enumerable/test_cross.rb
|
786
|
+
- test/lib/facet/enumerable/test_entropy.rb
|
787
|
+
- test/lib/facet/enumerable/test_uniq_by.rb
|
788
|
+
- test/lib/facet/enumerable/test_commonality.rb
|
789
|
+
- test/lib/facet/enumerable/test_compact_collect.rb
|
790
|
+
- test/lib/facet/enumerable/self/test_combinations.rb
|
791
|
+
- test/lib/facet/enumerable/self/test_cross.rb
|
792
|
+
- test/lib/facet/regexp/test_to_re.rb
|
793
|
+
- test/lib/facet/regexp/test_arity.rb
|
794
|
+
- test/lib/facet/regexp/test_to_regexp.rb
|
795
|
+
- test/lib/facet/string/test_shatter.rb
|
796
|
+
- test/lib/facet/string/self
|
797
|
+
- test/lib/facet/string/test_shift.rb
|
798
|
+
- test/lib/facet/string/test_line_wrap.rb
|
799
|
+
- test/lib/facet/string/test_margin.rb
|
800
|
+
- test/lib/facet/string/test_last.rb
|
801
|
+
- test/lib/facet/string/test_singular.rb
|
802
|
+
- test/lib/facet/string/test_unpack.rb
|
803
|
+
- test/lib/facet/string/test_dresner.rb
|
804
|
+
- test/lib/facet/string/test_frequency.rb
|
805
|
+
- test/lib/facet/string/test_nchar.rb
|
806
|
+
- test/lib/facet/string/test_lowercase.rb
|
807
|
+
- test/lib/facet/string/test_slap.rb
|
808
|
+
- test/lib/facet/string/test_each_char.rb
|
809
|
+
- test/lib/facet/string/test_blank.rb
|
810
|
+
- test/lib/facet/string/test_word_filter.rb
|
811
|
+
- test/lib/facet/string/test_basename.rb
|
812
|
+
- test/lib/facet/string/test_each_word.rb
|
813
|
+
- test/lib/facet/string/test_chars.rb
|
814
|
+
- test/lib/facet/string/test_downcase.rb
|
815
|
+
- test/lib/facet/string/test_index_all.rb
|
816
|
+
- test/lib/facet/string/test_to_proc.rb
|
817
|
+
- test/lib/facet/string/test_camelize.rb
|
818
|
+
- test/lib/facet/string/test_succ.rb
|
819
|
+
- test/lib/facet/string/test_range_all.rb
|
820
|
+
- test/lib/facet/string/test_to_date.rb
|
821
|
+
- test/lib/facet/string/test_fold.rb
|
822
|
+
- test/lib/facet/string/test_to_a.rb
|
823
|
+
- test/lib/facet/string/test_to_b.rb
|
824
|
+
- test/lib/facet/string/test_cmp.rb
|
825
|
+
- test/lib/facet/string/test_first.rb
|
826
|
+
- test/lib/facet/string/test_to_const.rb
|
827
|
+
- test/lib/facet/string/test_indent.rb
|
828
|
+
- test/lib/facet/string/test_range.rb
|
829
|
+
- test/lib/facet/string/test_upcase.rb
|
830
|
+
- test/lib/facet/string/test_range_of_line.rb
|
831
|
+
- test/lib/facet/string/test_to_re.rb
|
832
|
+
- test/lib/facet/string/test_at_rand.rb
|
833
|
+
- test/lib/facet/string/test_words.rb
|
834
|
+
- test/lib/facet/string/test_unix_crypt.rb
|
835
|
+
- test/lib/facet/string/test_capitalized.rb
|
836
|
+
- test/lib/facet/string/test_camelcase.rb
|
837
|
+
- test/lib/facet/string/test_pop.rb
|
838
|
+
- test/lib/facet/string/test_align_center.rb
|
839
|
+
- test/lib/facet/string/test_probability.rb
|
840
|
+
- test/lib/facet/string/test_to_arr.rb
|
841
|
+
- test/lib/facet/string/test_word_wrap.rb
|
842
|
+
- test/lib/facet/string/test_rand_index.rb
|
843
|
+
- test/lib/facet/string/test_similarity.rb
|
844
|
+
- test/lib/facet/string/test_rand_byte.rb
|
845
|
+
- test/lib/facet/string/test_demodulize.rb
|
846
|
+
- test/lib/facet/string/test_regesc.rb
|
847
|
+
- test/lib/facet/string/test_to_time.rb
|
848
|
+
- test/lib/facet/string/test_shuffle.rb
|
849
|
+
- test/lib/facet/string/test_quote.rb
|
850
|
+
- test/lib/facet/string/test_unshift.rb
|
851
|
+
- test/lib/facet/string/test_natcmp.rb
|
852
|
+
- test/lib/facet/string/test_mscan.rb
|
853
|
+
- test/lib/facet/string/test_bracket.rb
|
854
|
+
- test/lib/facet/string/test_whitespace.rb
|
855
|
+
- test/lib/facet/string/test_push.rb
|
856
|
+
- test/lib/facet/string/test_soundex.rb
|
857
|
+
- test/lib/facet/string/test_lines.rb
|
858
|
+
- test/lib/facet/string/test_humanize.rb
|
859
|
+
- test/lib/facet/string/self/test_patterns.rb
|
860
|
+
- test/lib/facet/string/self/test_rand_letter.rb
|
861
|
+
- test/lib/facet/string/self/test_interpolate.rb
|
862
|
+
- test/lib/facet/symbol/test_downcase.rb
|
863
|
+
- test/lib/facet/symbol/test_to_proc.rb
|
864
|
+
- test/lib/facet/symbol/test_camelize.rb
|
865
|
+
- test/lib/facet/symbol/test_succ.rb
|
866
|
+
- test/lib/facet/symbol/test_underscore.rb
|
867
|
+
- test/lib/facet/symbol/test_to_const.rb
|
868
|
+
- test/lib/facet/symbol/test_upcase.rb
|
869
|
+
- test/lib/facet/symbol/test_not.rb
|
870
|
+
- test/lib/facet/symbol/test_capitalized.rb
|
871
|
+
- test/lib/facet/symbol/test_pad.rb
|
872
|
+
- test/lib/facet/symbol/test_camelcase.rb
|
873
|
+
- test/lib/facet/symbol/test_capitalize.rb
|
874
|
+
- test/lib/facet/symbol/test_to_str.rb
|
875
|
+
- test/lib/facet/numeric/test_succ.rb
|
876
|
+
- test/lib/facet/numeric/test_to_b.rb
|
877
|
+
- test/lib/facet/numeric/test_ceil_multiple.rb
|
878
|
+
- test/lib/facet/binding/self
|
879
|
+
- test/lib/facet/binding/test_self.rb
|
880
|
+
- test/lib/facet/binding/test___LINE__.rb
|
881
|
+
- test/lib/facet/binding/test_local_variables.rb
|
882
|
+
- test/lib/facet/binding/test_eval.rb
|
883
|
+
- test/lib/facet/binding/test_call_stack.rb
|
884
|
+
- test/lib/facet/binding/test_called.rb
|
885
|
+
- test/lib/facet/binding/test_caller.rb
|
886
|
+
- test/lib/facet/binding/test_method_name.rb
|
887
|
+
- test/lib/facet/binding/test_op_store.rb
|
888
|
+
- test/lib/facet/binding/test_op_fetch.rb
|
889
|
+
- test/lib/facet/binding/test_defined.rb
|
890
|
+
- test/lib/facet/binding/self/test_of_caller.rb
|
891
|
+
- test/lib/facet/ostruct/test___update__.rb
|
892
|
+
- test/lib/facet/ostruct/test_op_store.rb
|
893
|
+
- test/lib/facet/ostruct/test_op_fetch.rb
|
894
|
+
- test/lib/facet/ostruct/test___merge__.rb
|
895
|
+
- test/lib/facet/integer/test_times_collect.rb
|
896
|
+
- test/lib/facet/integer/test_factorial.rb
|
897
|
+
- test/lib/facet/integer/test_ordinal.rb
|
898
|
+
- test/lib/facet/integer/test_multiple.rb
|
899
|
+
- test/lib/facets/english
|
900
|
+
- test/lib/facets/english/test_time.rb
|
901
|
+
- test/lib/facets/english/test_bytes.rb
|
902
|
+
- test/lib/facets/english/test_multipliers.rb
|
903
|
+
- test/FIXTURE/ls_r
|
904
|
+
- test/FIXTURE/open_as_string_file
|
905
|
+
- test/FIXTURE/test_file.txt
|
906
|
+
- test/FIXTURE/filelist
|
907
|
+
- test/FIXTURE/test_file2.txt
|
908
|
+
- test/FIXTURE/read_list_file
|
909
|
+
- test/FIXTURE/create_file
|
910
|
+
- test/FIXTURE/ls_r/A
|
911
|
+
- test/FIXTURE/ls_r/A.txt
|
912
|
+
- test/FIXTURE/ls_r/A/B
|
913
|
+
- test/FIXTURE/ls_r/A/B.txt
|
914
|
+
- test/FIXTURE/ls_r/A/B/C.txt
|
915
|
+
- test/FIXTURE/filelist/testfile.txt
|
916
|
+
- test/FIXTURE/filelist/testfile2.txt
|
1640
917
|
test_files: []
|
1641
|
-
|
1642
918
|
rdoc_options: []
|
1643
|
-
|
1644
919
|
extra_rdoc_files: []
|
1645
|
-
|
1646
920
|
executables: []
|
1647
|
-
|
1648
921
|
extensions: []
|
1649
|
-
|
1650
922
|
requirements: []
|
1651
|
-
|
1652
|
-
dependencies: []
|
1653
|
-
|
923
|
+
dependencies: []
|