facets 1.2.0 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +4 -3
- data/ProjectInfo +5 -2
- data/conf/facets/noauto +11 -11
- data/lib/facet/aspects.rb +1 -0
- data/lib/facet/float/round_off.rb +1 -0
- data/lib/facet/kernel/instance.rb +1 -0
- data/lib/facet/kernel/pp_exception.rb +1 -0
- data/lib/facet/module/cattr.rb +1 -0
- data/lib/facet/module/on_included.rb +1 -0
- data/lib/facet/nilclass/blank.rb +1 -0
- data/lib/facet/numeric/approx.rb +1 -0
- data/lib/facet/ostruct/instance.rb +1 -0
- data/lib/facets.rb +0 -1
- data/lib/facets/core/enumerable/every.rb +1 -5
- data/lib/facets/core/float.rb +1 -0
- data/lib/facets/core/float/approx.rb +2 -42
- data/lib/facets/core/float/round_at.rb +2 -1
- data/lib/facets/core/float/round_off.rb +8 -0
- data/lib/facets/core/float/round_to.rb +2 -1
- data/lib/facets/core/gem.rb +0 -3
- data/lib/facets/core/hash/inverse.rb +3 -1
- data/lib/facets/core/inflect.rb +3 -0
- data/lib/facets/core/kernel.rb +2 -2
- data/lib/facets/core/kernel/{__meta__.rb → instance.rb} +10 -9
- data/lib/facets/core/kernel/pp_exception.rb +17 -0
- data/lib/facets/core/module.rb +2 -0
- data/lib/facets/core/module/attr.rb +4 -1
- data/lib/facets/core/module/basename.rb +12 -1
- data/lib/facets/core/module/cattr.rb +180 -0
- data/lib/facets/core/module/cattr_accessor.rb +2 -141
- data/lib/facets/core/module/cattr_reader.rb +1 -1
- data/lib/facets/core/module/cattr_writer.rb +1 -1
- data/lib/facets/core/module/on_included.rb +48 -0
- data/lib/facets/core/module/wrap_method.rb +7 -2
- data/lib/facets/core/nilclass.rb +1 -1
- data/lib/facets/core/nilclass/{to_f.rb → blank.rb} +6 -6
- data/lib/facets/core/nilclass/op_cmp.rb +11 -0
- data/lib/facets/core/nilclass/succ.rb +5 -0
- data/lib/facets/core/numeric.rb +1 -0
- data/lib/facets/core/numeric/approx.rb +34 -0
- data/lib/facets/core/ostruct/__update__.rb +2 -2
- data/lib/facets/core/ostruct/instance.rb +37 -0
- data/lib/facets/core/string/modulize.rb +1 -1
- data/lib/facets/more/consoleapp.rb +27 -16
- data/lib/facets/more/crypt.rb +8 -4
- data/lib/facets/more/elementor.rb +104 -0
- data/lib/facets/more/expirable.rb +5 -0
- data/lib/facets/more/nilcomparable.rb +88 -31
- data/lib/facets/more/overload.rb +1 -1
- data/lib/facets/more/typecast.rb +12 -3
- data/test/FIXTURE/filelist/testfile.txt +0 -0
- data/test/FIXTURE/filelist/testfile2.txt +0 -0
- data/test/lib/{facet → facets/core}/array/test_at_rand.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_delete_unless.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_delete_values.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_delete_values_at.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_first.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_head.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_last_index.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_merge.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_mid.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_middle.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_op_fetch.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_op_store.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_pick.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_pos.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_pull.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_rand_index.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_rand_subset.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_range.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_rotate.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_select.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_shuffle.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_slap.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_thru.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_to_b.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_to_h.rb +3 -3
- data/test/lib/{facet → facets/core}/array/test_to_hash.rb +3 -3
- data/test/lib/{facet → facets/core}/binding/self/test_of_caller.rb +3 -3
- data/test/lib/{facet → facets/core}/binding/test___LINE__.rb +3 -3
- data/test/lib/{facet → facets/core}/binding/test_call_stack.rb +3 -3
- data/test/lib/{facet → facets/core}/binding/test_called.rb +3 -3
- data/test/lib/{facet → facets/core}/binding/test_caller.rb +3 -3
- data/test/lib/{facet → facets/core}/binding/test_defined.rb +3 -3
- data/test/lib/{facet → facets/core}/binding/test_eval.rb +3 -3
- data/test/lib/{facet → facets/core}/binding/test_local_variables.rb +3 -3
- data/test/lib/{facet → facets/core}/binding/test_method_name.rb +3 -3
- data/test/lib/{facet → facets/core}/binding/test_op_fetch.rb +3 -3
- data/test/lib/{facet → facets/core}/binding/test_op_store.rb +3 -3
- data/test/lib/{facet → facets/core}/binding/test_self.rb +3 -3
- data/test/lib/{facet → facets/core}/class/test_descendents.rb +3 -3
- data/test/lib/{facet → facets/core}/class/test_method_name.rb +3 -3
- data/test/lib/{facet → facets/core}/class/test_remove_descendents.rb +3 -3
- data/test/lib/{facet → facets/core}/class/test_unix_path.rb +3 -3
- data/test/lib/{facet → facets/core}/comparable/test_at_least.rb +3 -3
- data/test/lib/{facet → facets/core}/comparable/test_clip.rb +3 -3
- data/test/lib/{facet → facets/core}/comparable/test_cmp.rb +3 -3
- data/test/lib/{facet → facets/core}/continuation/self/test_create.rb +3 -3
- data/test/lib/{facet → facets/core}/date/test_days_in_month.rb +3 -3
- data/test/lib/{facet → facets/core}/date/test_days_of_month.rb +3 -3
- data/test/lib/{facet → facets/core}/date/test_stamp.rb +3 -3
- data/test/lib/{facet → facets/core}/date/test_to_date.rb +3 -3
- data/test/lib/{facet → facets/core}/date/test_to_s.rb +3 -3
- data/test/lib/{facet → facets/core}/date/test_to_time.rb +3 -3
- data/test/lib/{facet → facets/core}/dir/self/test_ancestor.rb +3 -3
- data/test/lib/{facet → facets/core}/dir/self/test_ascend.rb +3 -3
- data/test/lib/{facet → facets/core}/dir/self/test_ls_r.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/self/test_combinations.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/self/test_cross.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_collect_with_index.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_commonality.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_compact_collect.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_cross.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_each_combination.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_each_pair.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_each_slice.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_each_unique_pair.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_entropy.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_every.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_ew.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_filter_collect.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_find_collisions.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_frequency.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_graph.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_ideal_entropy.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_none.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_occur.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_one.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_op_pow.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_partition_by.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_permute.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_probability.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_to_h.rb +3 -3
- data/test/lib/{facet → facets/core}/enumerable/test_uniq_by.rb +3 -3
- data/test/lib/{facet → facets/core}/file/self/test_create.rb +3 -3
- data/test/lib/{facet → facets/core}/file/self/test_open_as_string.rb +3 -3
- data/test/lib/{facet → facets/core}/file/self/test_read_list.rb +3 -3
- data/test/lib/{facet → facets/core}/file/self/test_sanitize.rb +3 -3
- data/test/lib/{facet → facets/core}/file/self/test_split_all.rb +3 -3
- data/test/lib/{facet → facets/core}/fileutils/test_wc.rb +3 -3
- data/test/lib/{facet → facets/core}/fileutils/test_which.rb +3 -3
- data/test/lib/{facet → facets/core}/float/test_approx.rb +3 -3
- data/test/lib/{facet → facets/core}/float/test_round_at.rb +3 -3
- data/test/lib/{facet → facets/core}/float/test_round_to.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/self/test_zipnew.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_alias.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_assert_has_keys.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_assert_has_only_keys.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_at.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_collate.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_each.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_each_with_index.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_each_with_key.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_graph.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_has_keys.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_has_only_keys.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_inverse.rb +6 -4
- data/test/lib/{facet → facets/core}/hash/test_keys_to_s.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_keys_to_sym.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_op_fetch.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_op_lshift.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_rand_key.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_rand_pair.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_rand_value.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_replace_each.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_shuffle.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_slice.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_swap.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_swapkey.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_to_h.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_to_ostruct.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_to_ostruct_recurse.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_traverse.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_update_each.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_update_keys.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_update_values.rb +3 -3
- data/test/lib/{facet → facets/core}/hash/test_weave.rb +3 -3
- data/test/lib/{facet → facets/core}/integer/test_factorial.rb +3 -3
- data/test/lib/{facet → facets/core}/integer/test_multiple.rb +3 -3
- data/test/lib/{facet → facets/core}/integer/test_ordinal.rb +3 -3
- data/test/lib/{facet → facets/core}/integer/test_times_collect.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test___class__.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_as.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_assign_from.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_assign_with.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_bool.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_bug.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_call_stack.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_called.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_constant.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_copy.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_deep_copy.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_demo.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_fn.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_generate_method_name.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_get_by_id.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_here.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_in.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_maybe.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_metaclass.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_method.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_method_name.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_methods.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_new.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_object_class.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_object_hexid.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_require_all.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_require_esc.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_require_facet.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_resc.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_returning.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_send_as.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_set_from.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_set_with.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_silently.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_singleton.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_superior.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_supermethod.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_this.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_to_b.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_to_bool.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_uri.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_val.rb +3 -3
- data/test/lib/{facet → facets/core}/kernel/test_with_accessor.rb +3 -3
- data/test/lib/{facet → facets/core}/matchdata/test_match.rb +3 -3
- data/test/lib/{facet → facets/core}/matchdata/test_matchtree.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_abstract.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_alias_module_function.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_ancestor.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_basename.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_by_name.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_cattr_accessor.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_clone_using.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_dirname.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_equate_on.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_generate_instance_method_name.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_include_as.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_initializer.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_instance_methods.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_integrate.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_memoize.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_modspace.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_namespace.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_nesting.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_redef.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_redefine_method.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_redirect.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_redirect_method.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_remove.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_rename.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_rename_method.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_revisal.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_shadow_method.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_sort_on.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_undef.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_wrap.rb +3 -3
- data/test/lib/{facet → facets/core}/module/test_wrap_method.rb +3 -3
- data/test/lib/{facet → facets/core}/nilclass/test_empty.rb +3 -3
- data/test/lib/{facet → facets/core}/nilclass/test_include.rb +3 -3
- data/test/lib/{facet → facets/core}/nilclass/test_op_fetch.rb +3 -3
- data/test/lib/{facet → facets/core}/nilclass/test_size.rb +3 -3
- data/test/lib/{facet → facets/core}/nilclass/test_to_f.rb +3 -3
- data/test/lib/{facet → facets/core}/nilclass/test_to_h.rb +3 -3
- data/test/lib/{facet → facets/core}/numeric/test_ceil_multiple.rb +3 -3
- data/test/lib/{facet → facets/core}/numeric/test_succ.rb +3 -3
- data/test/lib/{facet → facets/core}/numeric/test_to_b.rb +3 -3
- data/test/lib/{facet → facets/core}/ostruct/test___merge__.rb +3 -3
- data/test/lib/{facet → facets/core}/ostruct/test___update__.rb +3 -3
- data/test/lib/{facet → facets/core}/ostruct/test_op_fetch.rb +3 -3
- data/test/lib/{facet → facets/core}/ostruct/test_op_store.rb +3 -3
- data/test/lib/{facet → facets/core}/proc/test_compose.rb +3 -3
- data/test/lib/{facet → facets/core}/proc/test_to_method.rb +3 -3
- data/test/lib/{facet → facets/core}/range/test_to_r.rb +3 -3
- data/test/lib/{facet → facets/core}/range/test_to_range.rb +3 -3
- data/test/lib/{facet → facets/core}/range/test_umbrella.rb +3 -3
- data/test/lib/{facet → facets/core}/range/test_within.rb +3 -3
- data/test/lib/{facet → facets/core}/regexp/test_arity.rb +3 -3
- data/test/lib/{facet → facets/core}/regexp/test_to_re.rb +3 -3
- data/test/lib/{facet → facets/core}/regexp/test_to_regexp.rb +3 -3
- data/test/lib/{facet → facets/core}/string/self/test_interpolate.rb +3 -3
- data/test/lib/{facet → facets/core}/string/self/test_patterns.rb +3 -3
- data/test/lib/{facet → facets/core}/string/self/test_rand_letter.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_align_center.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_at_rand.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_basename.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_blank.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_bracket.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_camelcase.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_camelize.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_capitalized.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_chars.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_cmp.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_demodulize.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_downcase.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_dresner.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_each_char.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_each_word.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_first.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_fold.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_frequency.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_humanize.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_indent.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_index_all.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_last.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_line_wrap.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_lines.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_lowercase.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_margin.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_methodize.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_modulize.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_mscan.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_natcmp.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_nchar.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_pathize.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_pop.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_probability.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_push.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_quote.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_rand_byte.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_rand_index.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_range.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_range_all.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_range_of_line.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_regesc.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_shatter.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_shift.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_shuffle.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_similarity.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_singular.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_slap.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_soundex.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_succ.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_to_a.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_to_arr.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_to_b.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_to_const.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_to_date.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_to_proc.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_to_re.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_to_time.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_unix_crypt.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_unpack.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_unshift.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_upcase.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_whitespace.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_word_filter.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_word_wrap.rb +3 -3
- data/test/lib/{facet → facets/core}/string/test_words.rb +3 -3
- data/test/lib/{facet → facets/core}/symbol/test_camelcase.rb +3 -3
- data/test/lib/{facet → facets/core}/symbol/test_camelize.rb +3 -3
- data/test/lib/{facet → facets/core}/symbol/test_capitalize.rb +3 -3
- data/test/lib/{facet → facets/core}/symbol/test_capitalized.rb +3 -3
- data/test/lib/{facet → facets/core}/symbol/test_downcase.rb +3 -3
- data/test/lib/{facet → facets/core}/symbol/test_not.rb +3 -3
- data/test/lib/{facet → facets/core}/symbol/test_pad.rb +3 -3
- data/test/lib/{facet → facets/core}/symbol/test_succ.rb +3 -3
- data/test/lib/{facet → facets/core}/symbol/test_to_const.rb +3 -3
- data/test/lib/{facet → facets/core}/symbol/test_to_proc.rb +3 -3
- data/test/lib/{facet → facets/core}/symbol/test_to_str.rb +3 -3
- data/test/lib/{facet → facets/core}/symbol/test_underscore.rb +3 -3
- data/test/lib/{facet → facets/core}/symbol/test_upcase.rb +3 -3
- data/test/lib/{facet → facets/core}/time/test_change.rb +3 -3
- data/test/lib/{facet → facets/core}/time/test_elapse.rb +3 -3
- data/test/lib/{facet → facets/core}/time/test_stamp.rb +3 -3
- data/test/lib/{facet → facets/core}/time/test_to_date.rb +3 -3
- data/test/lib/{facet → facets/core}/time/test_to_s.rb +3 -3
- data/test/lib/{facet → facets/core}/time/test_to_time.rb +3 -3
- data/test/lib/facets/more/test_annotation.rb +217 -0
- data/test/lib/facets/more/test_ansicode.rb +36 -0
- data/test/lib/facets/more/test_association.rb +46 -0
- data/test/lib/facets/more/test_bbcode.rb +34 -0
- data/test/lib/facets/more/test_bitmask.rb +47 -0
- data/test/lib/facets/more/test_bytes.rb +84 -0
- data/test/lib/facets/more/test_classinherit.rb +65 -0
- data/test/lib/facets/more/test_classmethods.rb +65 -0
- data/test/lib/facets/more/test_coroutine.rb +60 -0
- data/test/lib/facets/more/test_crypt.rb +46 -0
- data/test/lib/facets/more/test_dictionary.rb +97 -0
- data/test/lib/facets/more/test_enumerablepass.rb +86 -0
- data/test/lib/facets/more/test_floatstring.rb +36 -0
- data/test/lib/facets/more/test_functor.rb +39 -0
- data/test/lib/facets/more/test_inheritor.rb +155 -0
- data/test/lib/facets/more/test_interval.rb +119 -0
- data/test/lib/facets/more/test_lisp.rb +47 -0
- data/test/lib/facets/more/test_lisp_format.rb +37 -0
- data/test/lib/facets/more/test_lrucache.rb +25 -0
- data/test/lib/facets/more/test_mathconstants.rb +18 -0
- data/test/lib/facets/more/test_methodprobe.rb +53 -0
- data/test/lib/facets/more/test_multipliers.rb +114 -0
- data/test/lib/facets/more/test_multiton.rb +200 -0
- data/test/lib/facets/more/test_nackclass.rb +45 -0
- data/test/lib/facets/more/test_nilcomparable.rb +43 -0
- data/test/lib/facets/more/test_openobject.rb +66 -0
- data/test/lib/facets/more/test_overload.rb +54 -0
- data/test/lib/facets/more/test_paramix.rb +100 -0
- data/test/lib/facets/more/test_preinitialize.rb +49 -0
- data/test/lib/facets/more/test_promoteself.rb +45 -0
- data/test/lib/facets/more/test_snapshot.rb +34 -0
- data/test/lib/facets/more/test_statichash.rb +31 -0
- data/test/lib/facets/more/test_syncarray.rb +28 -0
- data/test/lib/facets/more/test_synchash.rb +28 -0
- data/test/lib/facets/more/test_tagiterator.rb +93 -0
- data/test/lib/facets/more/test_timer.rb +66 -0
- data/test/lib/facets/more/test_times.rb +73 -0
- data/test/lib/facets/more/test_tuple.rb +32 -0
- data/test/lib/facets/more/test_typecast.rb +65 -0
- data/test/lib/facets/more/test_uninheritable.rb +42 -0
- data/test/lib/facets/more/test_units.rb +104 -0
- data/test/lib/facets/more/test_yamlstruct.rb +37 -0
- metadata +416 -357
- data/lib/facet/kernel/__meta__.rb +0 -1
- data/lib/facet/kernel/meta.rb +0 -1
- data/lib/facet/nilclass/to_f.rb +0 -1
- data/lib/facets/core/kernel/meta.rb +0 -2
- data/test/lib/facet/fileutils/test_slice.rb +0 -96
@@ -0,0 +1,37 @@
|
|
1
|
+
# _____ _
|
2
|
+
# |_ _|__ ___| |_
|
3
|
+
# | |/ _ \/ __| __|
|
4
|
+
# | | __/\__ \ |_
|
5
|
+
# |_|\___||___/\__|
|
6
|
+
#
|
7
|
+
# for lib/facets/more/yamlstruct.rb
|
8
|
+
#
|
9
|
+
# Extracted Fri Mar 24 23:42:51 UTC 2006
|
10
|
+
# Unit Tools Reap Test Extractor
|
11
|
+
#
|
12
|
+
|
13
|
+
require 'facets/more/yamlstruct.rb'
|
14
|
+
|
15
|
+
|
16
|
+
require 'test/unit'
|
17
|
+
|
18
|
+
class TC_YAMLStruct < Test::Unit::TestCase
|
19
|
+
|
20
|
+
def setup
|
21
|
+
y = %{
|
22
|
+
a: 1
|
23
|
+
b: 2
|
24
|
+
c: 3
|
25
|
+
}
|
26
|
+
@y = YAMLStruct.new(y)
|
27
|
+
end
|
28
|
+
|
29
|
+
def test_001
|
30
|
+
assert_equal( 1, @y.a )
|
31
|
+
assert_equal( 2, @y.b )
|
32
|
+
assert_equal( 3, @y.c )
|
33
|
+
end
|
34
|
+
|
35
|
+
end
|
36
|
+
|
37
|
+
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.11
|
|
3
3
|
specification_version: 1
|
4
4
|
name: facets
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 1.2.
|
7
|
-
date: 2006-03-
|
6
|
+
version: 1.2.1
|
7
|
+
date: 2006-03-29 00:00:00 -05:00
|
8
8
|
summary: Vast collection of atomic core extension methods.
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -174,6 +174,7 @@ files:
|
|
174
174
|
- lib/facet/orderedhash.rb
|
175
175
|
- lib/facet/pathlist.rb
|
176
176
|
- lib/facet/overload.rb
|
177
|
+
- lib/facet/aspects.rb
|
177
178
|
- lib/facet/array/pull.rb
|
178
179
|
- lib/facet/array/each_with_key.rb
|
179
180
|
- lib/facet/array/merge.rb
|
@@ -305,6 +306,7 @@ files:
|
|
305
306
|
- lib/facet/float/approx.rb
|
306
307
|
- lib/facet/float/round_at.rb
|
307
308
|
- lib/facet/float/round_to.rb
|
309
|
+
- lib/facet/float/round_off.rb
|
308
310
|
- lib/facet/hash/collate.rb
|
309
311
|
- lib/facet/hash/assert_has_keys.rb
|
310
312
|
- lib/facet/hash/each_with_key.rb
|
@@ -362,7 +364,6 @@ files:
|
|
362
364
|
- lib/facet/kernel/copy.rb
|
363
365
|
- lib/facet/kernel/demo.rb
|
364
366
|
- lib/facet/kernel/resc.rb
|
365
|
-
- lib/facet/kernel/__meta__.rb
|
366
367
|
- lib/facet/kernel/set_with.rb
|
367
368
|
- lib/facet/kernel/require_all.rb
|
368
369
|
- lib/facet/kernel/as.rb
|
@@ -382,7 +383,6 @@ files:
|
|
382
383
|
- lib/facet/kernel/assign_from.rb
|
383
384
|
- lib/facet/kernel/__DIR__.rb
|
384
385
|
- lib/facet/kernel/__class__.rb
|
385
|
-
- lib/facet/kernel/meta.rb
|
386
386
|
- lib/facet/kernel/send_as.rb
|
387
387
|
- lib/facet/kernel/this.rb
|
388
388
|
- lib/facet/kernel/nack.rb
|
@@ -423,6 +423,8 @@ files:
|
|
423
423
|
- lib/facet/kernel/require_facet.rb
|
424
424
|
- lib/facet/kernel/silently.rb
|
425
425
|
- lib/facet/kernel/autoreload_files.rb
|
426
|
+
- lib/facet/kernel/instance.rb
|
427
|
+
- lib/facet/kernel/pp_exception.rb
|
426
428
|
- lib/facet/logger/format.rb
|
427
429
|
- lib/facet/logger/format_message.rb
|
428
430
|
- lib/facet/matchdata/matchtree.rb
|
@@ -468,10 +470,12 @@ files:
|
|
468
470
|
- lib/facet/module/memoize.rb
|
469
471
|
- lib/facet/module/wrap.rb
|
470
472
|
- lib/facet/module/revisal.rb
|
473
|
+
- lib/facet/module/on_included.rb
|
474
|
+
- lib/facet/module/cattr.rb
|
471
475
|
- lib/facet/nilclass/size.rb
|
472
476
|
- lib/facet/nilclass/length.rb
|
473
477
|
- lib/facet/nilclass/empty.rb
|
474
|
-
- lib/facet/nilclass/
|
478
|
+
- lib/facet/nilclass/blank.rb
|
475
479
|
- lib/facet/nilclass/to_h.rb
|
476
480
|
- lib/facet/nilclass/op_fetch.rb
|
477
481
|
- lib/facet/nilclass/include.rb
|
@@ -479,12 +483,14 @@ files:
|
|
479
483
|
- lib/facet/numeric/to_b.rb
|
480
484
|
- lib/facet/numeric/ceil_multiple.rb
|
481
485
|
- lib/facet/numeric/pred.rb
|
486
|
+
- lib/facet/numeric/approx.rb
|
482
487
|
- lib/facet/ostruct/__update__.rb
|
483
488
|
- lib/facet/ostruct/__merge__.rb
|
484
489
|
- lib/facet/ostruct/to_h.rb
|
485
490
|
- lib/facet/ostruct/op_store.rb
|
486
491
|
- lib/facet/ostruct/op_fetch.rb
|
487
492
|
- lib/facet/ostruct/__table__.rb
|
493
|
+
- lib/facet/ostruct/instance.rb
|
488
494
|
- lib/facet/pathname/descend.rb
|
489
495
|
- lib/facet/pathname/ascend.rb
|
490
496
|
- lib/facet/proc/to_method.rb
|
@@ -811,6 +817,7 @@ files:
|
|
811
817
|
- lib/facets/core/float/approx.rb
|
812
818
|
- lib/facets/core/float/round_at.rb
|
813
819
|
- lib/facets/core/float/round_to.rb
|
820
|
+
- lib/facets/core/float/round_off.rb
|
814
821
|
- lib/facets/core/hash/self
|
815
822
|
- lib/facets/core/hash/collate.rb
|
816
823
|
- lib/facets/core/hash/assert_has_keys.rb
|
@@ -868,7 +875,6 @@ files:
|
|
868
875
|
- lib/facets/core/kernel/copy.rb
|
869
876
|
- lib/facets/core/kernel/demo.rb
|
870
877
|
- lib/facets/core/kernel/resc.rb
|
871
|
-
- lib/facets/core/kernel/__meta__.rb
|
872
878
|
- lib/facets/core/kernel/set_with.rb
|
873
879
|
- lib/facets/core/kernel/require_all.rb
|
874
880
|
- lib/facets/core/kernel/as.rb
|
@@ -888,7 +894,6 @@ files:
|
|
888
894
|
- lib/facets/core/kernel/assign_from.rb
|
889
895
|
- lib/facets/core/kernel/__DIR__.rb
|
890
896
|
- lib/facets/core/kernel/__class__.rb
|
891
|
-
- lib/facets/core/kernel/meta.rb
|
892
897
|
- lib/facets/core/kernel/send_as.rb
|
893
898
|
- lib/facets/core/kernel/this.rb
|
894
899
|
- lib/facets/core/kernel/nack.rb
|
@@ -929,6 +934,8 @@ files:
|
|
929
934
|
- lib/facets/core/kernel/require_facet.rb
|
930
935
|
- lib/facets/core/kernel/silently.rb
|
931
936
|
- lib/facets/core/kernel/autoreload_files.rb
|
937
|
+
- lib/facets/core/kernel/instance.rb
|
938
|
+
- lib/facets/core/kernel/pp_exception.rb
|
932
939
|
- lib/facets/core/logger/format.rb
|
933
940
|
- lib/facets/core/logger/format_message.rb
|
934
941
|
- lib/facets/core/matchdata/matchtree.rb
|
@@ -974,23 +981,29 @@ files:
|
|
974
981
|
- lib/facets/core/module/memoize.rb
|
975
982
|
- lib/facets/core/module/wrap.rb
|
976
983
|
- lib/facets/core/module/revisal.rb
|
984
|
+
- lib/facets/core/module/on_included.rb
|
985
|
+
- lib/facets/core/module/cattr.rb
|
977
986
|
- lib/facets/core/nilclass/size.rb
|
978
987
|
- lib/facets/core/nilclass/length.rb
|
979
988
|
- lib/facets/core/nilclass/empty.rb
|
980
|
-
- lib/facets/core/nilclass/
|
989
|
+
- lib/facets/core/nilclass/blank.rb
|
981
990
|
- lib/facets/core/nilclass/to_h.rb
|
982
991
|
- lib/facets/core/nilclass/op_fetch.rb
|
983
992
|
- lib/facets/core/nilclass/include.rb
|
993
|
+
- lib/facets/core/nilclass/succ.rb
|
994
|
+
- lib/facets/core/nilclass/op_cmp.rb
|
984
995
|
- lib/facets/core/numeric/succ.rb
|
985
996
|
- lib/facets/core/numeric/to_b.rb
|
986
997
|
- lib/facets/core/numeric/ceil_multiple.rb
|
987
998
|
- lib/facets/core/numeric/pred.rb
|
999
|
+
- lib/facets/core/numeric/approx.rb
|
988
1000
|
- lib/facets/core/ostruct/__update__.rb
|
989
1001
|
- lib/facets/core/ostruct/__merge__.rb
|
990
1002
|
- lib/facets/core/ostruct/to_h.rb
|
991
1003
|
- lib/facets/core/ostruct/op_store.rb
|
992
1004
|
- lib/facets/core/ostruct/op_fetch.rb
|
993
1005
|
- lib/facets/core/ostruct/__table__.rb
|
1006
|
+
- lib/facets/core/ostruct/instance.rb
|
994
1007
|
- lib/facets/core/pathname/descend.rb
|
995
1008
|
- lib/facets/core/pathname/ascend.rb
|
996
1009
|
- lib/facets/core/proc/to_method.rb
|
@@ -1191,361 +1204,405 @@ files:
|
|
1191
1204
|
- lib/facets/more/pathlist.rb
|
1192
1205
|
- lib/facets/more/overload.rb
|
1193
1206
|
- lib/facets/more/aspects.rb
|
1207
|
+
- lib/facets/more/elementor.rb
|
1194
1208
|
- test/lib
|
1195
1209
|
- test/testdir.rb
|
1196
1210
|
- test/FIXTURE
|
1197
|
-
- test/lib/
|
1198
|
-
- test/lib/
|
1199
|
-
- test/lib/
|
1200
|
-
- test/lib/
|
1201
|
-
- test/lib/
|
1202
|
-
- test/lib/
|
1203
|
-
- test/lib/
|
1204
|
-
- test/lib/
|
1205
|
-
- test/lib/
|
1206
|
-
- test/lib/
|
1207
|
-
- test/lib/
|
1208
|
-
- test/lib/
|
1209
|
-
- test/lib/
|
1210
|
-
- test/lib/
|
1211
|
-
- test/lib/
|
1212
|
-
- test/lib/
|
1213
|
-
- test/lib/
|
1214
|
-
- test/lib/
|
1215
|
-
- test/lib/
|
1216
|
-
- test/lib/
|
1217
|
-
- test/lib/
|
1218
|
-
- test/lib/
|
1219
|
-
- test/lib/
|
1220
|
-
- test/lib/
|
1221
|
-
- test/lib/
|
1222
|
-
- test/lib/
|
1223
|
-
- test/lib/
|
1224
|
-
- test/lib/
|
1225
|
-
- test/lib/
|
1226
|
-
- test/lib/
|
1227
|
-
- test/lib/
|
1228
|
-
- test/lib/
|
1229
|
-
- test/lib/
|
1230
|
-
- test/lib/
|
1231
|
-
- test/lib/
|
1232
|
-
- test/lib/
|
1233
|
-
- test/lib/
|
1234
|
-
- test/lib/
|
1235
|
-
- test/lib/
|
1236
|
-
- test/lib/
|
1237
|
-
- test/lib/
|
1238
|
-
- test/lib/
|
1239
|
-
- test/lib/
|
1240
|
-
- test/lib/
|
1241
|
-
- test/lib/
|
1242
|
-
- test/lib/
|
1243
|
-
- test/lib/
|
1244
|
-
- test/lib/
|
1245
|
-
- test/lib/
|
1246
|
-
- test/lib/
|
1247
|
-
- test/lib/
|
1248
|
-
- test/lib/
|
1249
|
-
- test/lib/
|
1250
|
-
- test/lib/
|
1251
|
-
- test/lib/
|
1252
|
-
- test/lib/
|
1253
|
-
- test/lib/
|
1254
|
-
- test/lib/
|
1255
|
-
- test/lib/
|
1256
|
-
- test/lib/
|
1257
|
-
- test/lib/
|
1258
|
-
- test/lib/
|
1259
|
-
- test/lib/
|
1260
|
-
- test/lib/
|
1261
|
-
- test/lib/
|
1262
|
-
- test/lib/
|
1263
|
-
- test/lib/
|
1264
|
-
- test/lib/
|
1265
|
-
- test/lib/
|
1266
|
-
- test/lib/
|
1267
|
-
- test/lib/
|
1268
|
-
- test/lib/
|
1269
|
-
- test/lib/
|
1270
|
-
- test/lib/
|
1271
|
-
- test/lib/
|
1272
|
-
- test/lib/
|
1273
|
-
- test/lib/
|
1274
|
-
- test/lib/
|
1275
|
-
- test/lib/
|
1276
|
-
- test/lib/
|
1277
|
-
- test/lib/
|
1278
|
-
- test/lib/
|
1279
|
-
- test/lib/
|
1280
|
-
- test/lib/
|
1281
|
-
- test/lib/
|
1282
|
-
- test/lib/
|
1283
|
-
- test/lib/
|
1284
|
-
- test/lib/
|
1285
|
-
- test/lib/
|
1286
|
-
- test/lib/
|
1287
|
-
- test/lib/
|
1288
|
-
- test/lib/
|
1289
|
-
- test/lib/
|
1290
|
-
- test/lib/
|
1291
|
-
- test/lib/
|
1292
|
-
- test/lib/
|
1293
|
-
- test/lib/
|
1294
|
-
- test/lib/
|
1295
|
-
- test/lib/
|
1296
|
-
- test/lib/
|
1297
|
-
- test/lib/
|
1298
|
-
- test/lib/
|
1299
|
-
- test/lib/
|
1300
|
-
- test/lib/
|
1301
|
-
- test/lib/
|
1302
|
-
- test/lib/
|
1303
|
-
- test/lib/
|
1304
|
-
- test/lib/
|
1305
|
-
- test/lib/
|
1306
|
-
- test/lib/
|
1307
|
-
- test/lib/
|
1308
|
-
- test/lib/
|
1309
|
-
- test/lib/
|
1310
|
-
- test/lib/
|
1311
|
-
- test/lib/
|
1312
|
-
- test/lib/
|
1313
|
-
- test/lib/
|
1314
|
-
- test/lib/
|
1315
|
-
- test/lib/
|
1316
|
-
- test/lib/
|
1317
|
-
- test/lib/
|
1318
|
-
- test/lib/
|
1319
|
-
- test/lib/
|
1320
|
-
- test/lib/
|
1321
|
-
- test/lib/
|
1322
|
-
- test/lib/
|
1323
|
-
- test/lib/
|
1324
|
-
- test/lib/
|
1325
|
-
- test/lib/
|
1326
|
-
- test/lib/
|
1327
|
-
- test/lib/
|
1328
|
-
- test/lib/
|
1329
|
-
- test/lib/
|
1330
|
-
- test/lib/
|
1331
|
-
- test/lib/
|
1332
|
-
- test/lib/
|
1333
|
-
- test/lib/
|
1334
|
-
- test/lib/
|
1335
|
-
- test/lib/
|
1336
|
-
- test/lib/
|
1337
|
-
- test/lib/
|
1338
|
-
- test/lib/
|
1339
|
-
- test/lib/
|
1340
|
-
- test/lib/
|
1341
|
-
- test/lib/
|
1342
|
-
- test/lib/
|
1343
|
-
- test/lib/
|
1344
|
-
- test/lib/
|
1345
|
-
- test/lib/
|
1346
|
-
- test/lib/
|
1347
|
-
- test/lib/
|
1348
|
-
- test/lib/
|
1349
|
-
- test/lib/
|
1350
|
-
- test/lib/
|
1351
|
-
- test/lib/
|
1352
|
-
- test/lib/
|
1353
|
-
- test/lib/
|
1354
|
-
- test/lib/
|
1355
|
-
- test/lib/
|
1356
|
-
- test/lib/
|
1357
|
-
- test/lib/
|
1358
|
-
- test/lib/
|
1359
|
-
- test/lib/
|
1360
|
-
- test/lib/
|
1361
|
-
- test/lib/
|
1362
|
-
- test/lib/
|
1363
|
-
- test/lib/
|
1364
|
-
- test/lib/
|
1365
|
-
- test/lib/
|
1366
|
-
- test/lib/
|
1367
|
-
- test/lib/
|
1368
|
-
- test/lib/
|
1369
|
-
- test/lib/
|
1370
|
-
- test/lib/
|
1371
|
-
- test/lib/
|
1372
|
-
- test/lib/
|
1373
|
-
- test/lib/
|
1374
|
-
- test/lib/
|
1375
|
-
- test/lib/
|
1376
|
-
- test/lib/
|
1377
|
-
- test/lib/
|
1378
|
-
- test/lib/
|
1379
|
-
- test/lib/
|
1380
|
-
- test/lib/
|
1381
|
-
- test/lib/
|
1382
|
-
- test/lib/
|
1383
|
-
- test/lib/
|
1384
|
-
- test/lib/
|
1385
|
-
- test/lib/
|
1386
|
-
- test/lib/
|
1387
|
-
- test/lib/
|
1388
|
-
- test/lib/
|
1389
|
-
- test/lib/
|
1390
|
-
- test/lib/
|
1391
|
-
- test/lib/
|
1392
|
-
- test/lib/
|
1393
|
-
- test/lib/
|
1394
|
-
- test/lib/
|
1395
|
-
- test/lib/
|
1396
|
-
- test/lib/
|
1397
|
-
- test/lib/
|
1398
|
-
- test/lib/
|
1399
|
-
- test/lib/
|
1400
|
-
- test/lib/
|
1401
|
-
- test/lib/
|
1402
|
-
- test/lib/
|
1403
|
-
- test/lib/
|
1404
|
-
- test/lib/
|
1405
|
-
- test/lib/
|
1406
|
-
- test/lib/
|
1407
|
-
- test/lib/
|
1408
|
-
- test/lib/
|
1409
|
-
- test/lib/
|
1410
|
-
- test/lib/
|
1411
|
-
- test/lib/
|
1412
|
-
- test/lib/
|
1413
|
-
- test/lib/
|
1414
|
-
- test/lib/
|
1415
|
-
- test/lib/
|
1416
|
-
- test/lib/
|
1417
|
-
- test/lib/
|
1418
|
-
- test/lib/
|
1419
|
-
- test/lib/
|
1420
|
-
- test/lib/
|
1421
|
-
- test/lib/
|
1422
|
-
- test/lib/
|
1423
|
-
- test/lib/
|
1424
|
-
- test/lib/
|
1425
|
-
- test/lib/
|
1426
|
-
- test/lib/
|
1427
|
-
- test/lib/
|
1428
|
-
- test/lib/
|
1429
|
-
- test/lib/
|
1430
|
-
- test/lib/
|
1431
|
-
- test/lib/
|
1432
|
-
- test/lib/
|
1433
|
-
- test/lib/
|
1434
|
-
- test/lib/
|
1435
|
-
- test/lib/
|
1436
|
-
- test/lib/
|
1437
|
-
- test/lib/
|
1438
|
-
- test/lib/
|
1439
|
-
- test/lib/
|
1440
|
-
- test/lib/
|
1441
|
-
- test/lib/
|
1442
|
-
- test/lib/
|
1443
|
-
- test/lib/
|
1444
|
-
- test/lib/
|
1445
|
-
- test/lib/
|
1446
|
-
- test/lib/
|
1447
|
-
- test/lib/
|
1448
|
-
- test/lib/
|
1449
|
-
- test/lib/
|
1450
|
-
- test/lib/
|
1451
|
-
- test/lib/
|
1452
|
-
- test/lib/
|
1453
|
-
- test/lib/
|
1454
|
-
- test/lib/
|
1455
|
-
- test/lib/
|
1456
|
-
- test/lib/
|
1457
|
-
- test/lib/
|
1458
|
-
- test/lib/
|
1459
|
-
- test/lib/
|
1460
|
-
- test/lib/
|
1461
|
-
- test/lib/
|
1462
|
-
- test/lib/
|
1463
|
-
- test/lib/
|
1464
|
-
- test/lib/
|
1465
|
-
- test/lib/
|
1466
|
-
- test/lib/
|
1467
|
-
- test/lib/
|
1468
|
-
- test/lib/
|
1469
|
-
- test/lib/
|
1470
|
-
- test/lib/
|
1471
|
-
- test/lib/
|
1472
|
-
- test/lib/
|
1473
|
-
- test/lib/
|
1474
|
-
- test/lib/
|
1475
|
-
- test/lib/
|
1476
|
-
- test/lib/
|
1477
|
-
- test/lib/
|
1478
|
-
- test/lib/
|
1479
|
-
- test/lib/
|
1480
|
-
- test/lib/
|
1481
|
-
- test/lib/
|
1482
|
-
- test/lib/
|
1483
|
-
- test/lib/
|
1484
|
-
- test/lib/
|
1485
|
-
- test/lib/
|
1486
|
-
- test/lib/
|
1487
|
-
- test/lib/
|
1488
|
-
- test/lib/
|
1489
|
-
- test/lib/
|
1490
|
-
- test/lib/
|
1491
|
-
- test/lib/
|
1492
|
-
- test/lib/
|
1493
|
-
- test/lib/
|
1494
|
-
- test/lib/
|
1495
|
-
- test/lib/
|
1496
|
-
- test/lib/
|
1497
|
-
- test/lib/
|
1498
|
-
- test/lib/
|
1499
|
-
- test/lib/
|
1500
|
-
- test/lib/
|
1501
|
-
- test/lib/
|
1502
|
-
- test/lib/
|
1503
|
-
- test/lib/
|
1504
|
-
- test/lib/
|
1505
|
-
- test/lib/
|
1506
|
-
- test/lib/
|
1507
|
-
- test/lib/
|
1508
|
-
- test/lib/
|
1509
|
-
- test/lib/
|
1510
|
-
- test/lib/
|
1511
|
-
- test/lib/
|
1512
|
-
- test/lib/
|
1513
|
-
- test/lib/
|
1514
|
-
- test/lib/
|
1515
|
-
- test/lib/
|
1516
|
-
- test/lib/
|
1517
|
-
- test/lib/
|
1518
|
-
- test/lib/
|
1519
|
-
- test/lib/
|
1520
|
-
- test/lib/
|
1521
|
-
- test/lib/
|
1522
|
-
- test/lib/
|
1523
|
-
- test/lib/
|
1524
|
-
- test/lib/
|
1525
|
-
- test/lib/
|
1526
|
-
- test/lib/
|
1527
|
-
- test/lib/
|
1528
|
-
- test/lib/
|
1529
|
-
- test/lib/
|
1530
|
-
- test/lib/
|
1531
|
-
- test/lib/
|
1532
|
-
- test/lib/
|
1533
|
-
- test/lib/
|
1534
|
-
- test/lib/
|
1535
|
-
- test/lib/
|
1536
|
-
- test/lib/
|
1537
|
-
- test/lib/
|
1538
|
-
- test/lib/
|
1539
|
-
- test/lib/
|
1540
|
-
- test/lib/
|
1541
|
-
- test/lib/
|
1542
|
-
- test/lib/
|
1543
|
-
- test/lib/
|
1544
|
-
- test/lib/
|
1545
|
-
- test/lib/
|
1211
|
+
- test/lib/facets
|
1212
|
+
- test/lib/facets/more
|
1213
|
+
- test/lib/facets/core/array
|
1214
|
+
- test/lib/facets/core/binding
|
1215
|
+
- test/lib/facets/core/class
|
1216
|
+
- test/lib/facets/core/comparable
|
1217
|
+
- test/lib/facets/core/continuation
|
1218
|
+
- test/lib/facets/core/date
|
1219
|
+
- test/lib/facets/core/dir
|
1220
|
+
- test/lib/facets/core/enumerable
|
1221
|
+
- test/lib/facets/core/file
|
1222
|
+
- test/lib/facets/core/fileutils
|
1223
|
+
- test/lib/facets/core/float
|
1224
|
+
- test/lib/facets/core/hash
|
1225
|
+
- test/lib/facets/core/integer
|
1226
|
+
- test/lib/facets/core/kernel
|
1227
|
+
- test/lib/facets/core/matchdata
|
1228
|
+
- test/lib/facets/core/module
|
1229
|
+
- test/lib/facets/core/nilclass
|
1230
|
+
- test/lib/facets/core/numeric
|
1231
|
+
- test/lib/facets/core/ostruct
|
1232
|
+
- test/lib/facets/core/proc
|
1233
|
+
- test/lib/facets/core/range
|
1234
|
+
- test/lib/facets/core/regexp
|
1235
|
+
- test/lib/facets/core/string
|
1236
|
+
- test/lib/facets/core/symbol
|
1237
|
+
- test/lib/facets/core/time
|
1238
|
+
- test/lib/facets/core/array/test_pull.rb
|
1239
|
+
- test/lib/facets/core/array/test_merge.rb
|
1240
|
+
- test/lib/facets/core/array/test_select.rb
|
1241
|
+
- test/lib/facets/core/array/test_rand_index.rb
|
1242
|
+
- test/lib/facets/core/array/test_rand_subset.rb
|
1243
|
+
- test/lib/facets/core/array/test_slap.rb
|
1244
|
+
- test/lib/facets/core/array/test_delete_unless.rb
|
1245
|
+
- test/lib/facets/core/array/test_delete_values.rb
|
1246
|
+
- test/lib/facets/core/array/test_last_index.rb
|
1247
|
+
- test/lib/facets/core/array/test_thru.rb
|
1248
|
+
- test/lib/facets/core/array/test_at_rand.rb
|
1249
|
+
- test/lib/facets/core/array/test_first.rb
|
1250
|
+
- test/lib/facets/core/array/test_range.rb
|
1251
|
+
- test/lib/facets/core/array/test_to_b.rb
|
1252
|
+
- test/lib/facets/core/array/test_to_h.rb
|
1253
|
+
- test/lib/facets/core/array/test_mid.rb
|
1254
|
+
- test/lib/facets/core/array/test_delete_values_at.rb
|
1255
|
+
- test/lib/facets/core/array/test_head.rb
|
1256
|
+
- test/lib/facets/core/array/test_pos.rb
|
1257
|
+
- test/lib/facets/core/array/test_rotate.rb
|
1258
|
+
- test/lib/facets/core/array/test_shuffle.rb
|
1259
|
+
- test/lib/facets/core/array/test_op_store.rb
|
1260
|
+
- test/lib/facets/core/array/test_op_fetch.rb
|
1261
|
+
- test/lib/facets/core/array/test_middle.rb
|
1262
|
+
- test/lib/facets/core/array/test_pick.rb
|
1263
|
+
- test/lib/facets/core/array/test_to_hash.rb
|
1264
|
+
- test/lib/facets/core/binding/test_call_stack.rb
|
1265
|
+
- test/lib/facets/core/binding/test_self.rb
|
1266
|
+
- test/lib/facets/core/binding/test___LINE__.rb
|
1267
|
+
- test/lib/facets/core/binding/test_eval.rb
|
1268
|
+
- test/lib/facets/core/binding/test_method_name.rb
|
1269
|
+
- test/lib/facets/core/binding/test_called.rb
|
1270
|
+
- test/lib/facets/core/binding/test_caller.rb
|
1271
|
+
- test/lib/facets/core/binding/test_defined.rb
|
1272
|
+
- test/lib/facets/core/binding/test_op_store.rb
|
1273
|
+
- test/lib/facets/core/binding/test_op_fetch.rb
|
1274
|
+
- test/lib/facets/core/binding/test_local_variables.rb
|
1275
|
+
- test/lib/facets/core/binding/self
|
1276
|
+
- test/lib/facets/core/binding/self/test_of_caller.rb
|
1277
|
+
- test/lib/facets/core/class/test_descendents.rb
|
1278
|
+
- test/lib/facets/core/class/test_remove_descendents.rb
|
1279
|
+
- test/lib/facets/core/class/test_unix_path.rb
|
1280
|
+
- test/lib/facets/core/class/test_method_name.rb
|
1281
|
+
- test/lib/facets/core/comparable/test_cmp.rb
|
1282
|
+
- test/lib/facets/core/comparable/test_at_least.rb
|
1283
|
+
- test/lib/facets/core/comparable/test_clip.rb
|
1284
|
+
- test/lib/facets/core/continuation/self
|
1285
|
+
- test/lib/facets/core/continuation/self/test_create.rb
|
1286
|
+
- test/lib/facets/core/date/test_to_date.rb
|
1287
|
+
- test/lib/facets/core/date/test_days_in_month.rb
|
1288
|
+
- test/lib/facets/core/date/test_to_s.rb
|
1289
|
+
- test/lib/facets/core/date/test_stamp.rb
|
1290
|
+
- test/lib/facets/core/date/test_to_time.rb
|
1291
|
+
- test/lib/facets/core/date/test_days_of_month.rb
|
1292
|
+
- test/lib/facets/core/dir/self
|
1293
|
+
- test/lib/facets/core/dir/self/test_ls_r.rb
|
1294
|
+
- test/lib/facets/core/dir/self/test_ancestor.rb
|
1295
|
+
- test/lib/facets/core/dir/self/test_ascend.rb
|
1296
|
+
- test/lib/facets/core/enumerable/test_find_collisions.rb
|
1297
|
+
- test/lib/facets/core/enumerable/test_each_unique_pair.rb
|
1298
|
+
- test/lib/facets/core/enumerable/test_ew.rb
|
1299
|
+
- test/lib/facets/core/enumerable/test_graph.rb
|
1300
|
+
- test/lib/facets/core/enumerable/test_filter_collect.rb
|
1301
|
+
- test/lib/facets/core/enumerable/test_ideal_entropy.rb
|
1302
|
+
- test/lib/facets/core/enumerable/test_partition_by.rb
|
1303
|
+
- test/lib/facets/core/enumerable/test_probability.rb
|
1304
|
+
- test/lib/facets/core/enumerable/test_collect_with_index.rb
|
1305
|
+
- test/lib/facets/core/enumerable/test_to_h.rb
|
1306
|
+
- test/lib/facets/core/enumerable/test_each_pair.rb
|
1307
|
+
- test/lib/facets/core/enumerable/test_every.rb
|
1308
|
+
- test/lib/facets/core/enumerable/test_compact_collect.rb
|
1309
|
+
- test/lib/facets/core/enumerable/test_one.rb
|
1310
|
+
- test/lib/facets/core/enumerable/test_none.rb
|
1311
|
+
- test/lib/facets/core/enumerable/test_op_pow.rb
|
1312
|
+
- test/lib/facets/core/enumerable/test_frequency.rb
|
1313
|
+
- test/lib/facets/core/enumerable/test_permute.rb
|
1314
|
+
- test/lib/facets/core/enumerable/test_occur.rb
|
1315
|
+
- test/lib/facets/core/enumerable/test_commonality.rb
|
1316
|
+
- test/lib/facets/core/enumerable/test_each_combination.rb
|
1317
|
+
- test/lib/facets/core/enumerable/test_each_slice.rb
|
1318
|
+
- test/lib/facets/core/enumerable/test_entropy.rb
|
1319
|
+
- test/lib/facets/core/enumerable/test_uniq_by.rb
|
1320
|
+
- test/lib/facets/core/enumerable/test_cross.rb
|
1321
|
+
- test/lib/facets/core/enumerable/self
|
1322
|
+
- test/lib/facets/core/enumerable/self/test_combinations.rb
|
1323
|
+
- test/lib/facets/core/enumerable/self/test_cross.rb
|
1324
|
+
- test/lib/facets/core/file/self
|
1325
|
+
- test/lib/facets/core/file/self/test_open_as_string.rb
|
1326
|
+
- test/lib/facets/core/file/self/test_read_list.rb
|
1327
|
+
- test/lib/facets/core/file/self/test_sanitize.rb
|
1328
|
+
- test/lib/facets/core/file/self/test_split_all.rb
|
1329
|
+
- test/lib/facets/core/file/self/test_create.rb
|
1330
|
+
- test/lib/facets/core/fileutils/test_wc.rb
|
1331
|
+
- test/lib/facets/core/fileutils/test_which.rb
|
1332
|
+
- test/lib/facets/core/float/test_approx.rb
|
1333
|
+
- test/lib/facets/core/float/test_round_at.rb
|
1334
|
+
- test/lib/facets/core/float/test_round_to.rb
|
1335
|
+
- test/lib/facets/core/hash/test_collate.rb
|
1336
|
+
- test/lib/facets/core/hash/test_assert_has_keys.rb
|
1337
|
+
- test/lib/facets/core/hash/test_each_with_key.rb
|
1338
|
+
- test/lib/facets/core/hash/test_at.rb
|
1339
|
+
- test/lib/facets/core/hash/test_each.rb
|
1340
|
+
- test/lib/facets/core/hash/test_each_with_index.rb
|
1341
|
+
- test/lib/facets/core/hash/test_graph.rb
|
1342
|
+
- test/lib/facets/core/hash/test_to_ostruct.rb
|
1343
|
+
- test/lib/facets/core/hash/test_update_values.rb
|
1344
|
+
- test/lib/facets/core/hash/test_inverse.rb
|
1345
|
+
- test/lib/facets/core/hash/test_rand_value.rb
|
1346
|
+
- test/lib/facets/core/hash/test_assert_has_only_keys.rb
|
1347
|
+
- test/lib/facets/core/hash/test_keys_to_sym.rb
|
1348
|
+
- test/lib/facets/core/hash/test_has_only_keys.rb
|
1349
|
+
- test/lib/facets/core/hash/test_replace_each.rb
|
1350
|
+
- test/lib/facets/core/hash/test_swap.rb
|
1351
|
+
- test/lib/facets/core/hash/test_rand_key.rb
|
1352
|
+
- test/lib/facets/core/hash/test_to_h.rb
|
1353
|
+
- test/lib/facets/core/hash/test_slice.rb
|
1354
|
+
- test/lib/facets/core/hash/test_traverse.rb
|
1355
|
+
- test/lib/facets/core/hash/test_shuffle.rb
|
1356
|
+
- test/lib/facets/core/hash/test_alias.rb
|
1357
|
+
- test/lib/facets/core/hash/test_op_fetch.rb
|
1358
|
+
- test/lib/facets/core/hash/test_has_keys.rb
|
1359
|
+
- test/lib/facets/core/hash/test_to_ostruct_recurse.rb
|
1360
|
+
- test/lib/facets/core/hash/test_swapkey.rb
|
1361
|
+
- test/lib/facets/core/hash/test_keys_to_s.rb
|
1362
|
+
- test/lib/facets/core/hash/test_weave.rb
|
1363
|
+
- test/lib/facets/core/hash/test_op_lshift.rb
|
1364
|
+
- test/lib/facets/core/hash/test_update_keys.rb
|
1365
|
+
- test/lib/facets/core/hash/test_rand_pair.rb
|
1366
|
+
- test/lib/facets/core/hash/test_update_each.rb
|
1367
|
+
- test/lib/facets/core/hash/self
|
1368
|
+
- test/lib/facets/core/hash/self/test_zipnew.rb
|
1369
|
+
- test/lib/facets/core/integer/test_multiple.rb
|
1370
|
+
- test/lib/facets/core/integer/test_times_collect.rb
|
1371
|
+
- test/lib/facets/core/integer/test_factorial.rb
|
1372
|
+
- test/lib/facets/core/integer/test_ordinal.rb
|
1373
|
+
- test/lib/facets/core/kernel/test_call_stack.rb
|
1374
|
+
- test/lib/facets/core/kernel/test_get_by_id.rb
|
1375
|
+
- test/lib/facets/core/kernel/test_constant.rb
|
1376
|
+
- test/lib/facets/core/kernel/test_copy.rb
|
1377
|
+
- test/lib/facets/core/kernel/test_demo.rb
|
1378
|
+
- test/lib/facets/core/kernel/test_resc.rb
|
1379
|
+
- test/lib/facets/core/kernel/test_set_with.rb
|
1380
|
+
- test/lib/facets/core/kernel/test_require_all.rb
|
1381
|
+
- test/lib/facets/core/kernel/test_as.rb
|
1382
|
+
- test/lib/facets/core/kernel/test_fn.rb
|
1383
|
+
- test/lib/facets/core/kernel/test_in.rb
|
1384
|
+
- test/lib/facets/core/kernel/test_to_bool.rb
|
1385
|
+
- test/lib/facets/core/kernel/test_require_esc.rb
|
1386
|
+
- test/lib/facets/core/kernel/test_singleton.rb
|
1387
|
+
- test/lib/facets/core/kernel/test_methods.rb
|
1388
|
+
- test/lib/facets/core/kernel/test_assign_from.rb
|
1389
|
+
- test/lib/facets/core/kernel/test___class__.rb
|
1390
|
+
- test/lib/facets/core/kernel/test_send_as.rb
|
1391
|
+
- test/lib/facets/core/kernel/test_this.rb
|
1392
|
+
- test/lib/facets/core/kernel/test_bug.rb
|
1393
|
+
- test/lib/facets/core/kernel/test_method_name.rb
|
1394
|
+
- test/lib/facets/core/kernel/test_generate_method_name.rb
|
1395
|
+
- test/lib/facets/core/kernel/test_to_b.rb
|
1396
|
+
- test/lib/facets/core/kernel/test_supermethod.rb
|
1397
|
+
- test/lib/facets/core/kernel/test_maybe.rb
|
1398
|
+
- test/lib/facets/core/kernel/test_object_class.rb
|
1399
|
+
- test/lib/facets/core/kernel/test_new.rb
|
1400
|
+
- test/lib/facets/core/kernel/test_with_accessor.rb
|
1401
|
+
- test/lib/facets/core/kernel/test_returning.rb
|
1402
|
+
- test/lib/facets/core/kernel/test_here.rb
|
1403
|
+
- test/lib/facets/core/kernel/test_called.rb
|
1404
|
+
- test/lib/facets/core/kernel/test_metaclass.rb
|
1405
|
+
- test/lib/facets/core/kernel/test_assign_with.rb
|
1406
|
+
- test/lib/facets/core/kernel/test_val.rb
|
1407
|
+
- test/lib/facets/core/kernel/test_uri.rb
|
1408
|
+
- test/lib/facets/core/kernel/test_set_from.rb
|
1409
|
+
- test/lib/facets/core/kernel/test_object_hexid.rb
|
1410
|
+
- test/lib/facets/core/kernel/test_method.rb
|
1411
|
+
- test/lib/facets/core/kernel/test_deep_copy.rb
|
1412
|
+
- test/lib/facets/core/kernel/test_superior.rb
|
1413
|
+
- test/lib/facets/core/kernel/test_bool.rb
|
1414
|
+
- test/lib/facets/core/kernel/test_require_facet.rb
|
1415
|
+
- test/lib/facets/core/kernel/test_silently.rb
|
1416
|
+
- test/lib/facets/core/matchdata/test_matchtree.rb
|
1417
|
+
- test/lib/facets/core/matchdata/test_match.rb
|
1418
|
+
- test/lib/facets/core/module/test_redefine_method.rb
|
1419
|
+
- test/lib/facets/core/module/test_redirect_method.rb
|
1420
|
+
- test/lib/facets/core/module/test_initializer.rb
|
1421
|
+
- test/lib/facets/core/module/test_undef.rb
|
1422
|
+
- test/lib/facets/core/module/test_modspace.rb
|
1423
|
+
- test/lib/facets/core/module/test_instance_methods.rb
|
1424
|
+
- test/lib/facets/core/module/test_integrate.rb
|
1425
|
+
- test/lib/facets/core/module/test_basename.rb
|
1426
|
+
- test/lib/facets/core/module/test_generate_instance_method_name.rb
|
1427
|
+
- test/lib/facets/core/module/test_redirect.rb
|
1428
|
+
- test/lib/facets/core/module/test_shadow_method.rb
|
1429
|
+
- test/lib/facets/core/module/test_alias_module_function.rb
|
1430
|
+
- test/lib/facets/core/module/test_namespace.rb
|
1431
|
+
- test/lib/facets/core/module/test_abstract.rb
|
1432
|
+
- test/lib/facets/core/module/test_nesting.rb
|
1433
|
+
- test/lib/facets/core/module/test_wrap_method.rb
|
1434
|
+
- test/lib/facets/core/module/test_ancestor.rb
|
1435
|
+
- test/lib/facets/core/module/test_include_as.rb
|
1436
|
+
- test/lib/facets/core/module/test_rename_method.rb
|
1437
|
+
- test/lib/facets/core/module/test_rename.rb
|
1438
|
+
- test/lib/facets/core/module/test_dirname.rb
|
1439
|
+
- test/lib/facets/core/module/test_remove.rb
|
1440
|
+
- test/lib/facets/core/module/test_sort_on.rb
|
1441
|
+
- test/lib/facets/core/module/test_cattr_accessor.rb
|
1442
|
+
- test/lib/facets/core/module/test_equate_on.rb
|
1443
|
+
- test/lib/facets/core/module/test_redef.rb
|
1444
|
+
- test/lib/facets/core/module/test_clone_using.rb
|
1445
|
+
- test/lib/facets/core/module/test_by_name.rb
|
1446
|
+
- test/lib/facets/core/module/test_memoize.rb
|
1447
|
+
- test/lib/facets/core/module/test_wrap.rb
|
1448
|
+
- test/lib/facets/core/module/test_revisal.rb
|
1449
|
+
- test/lib/facets/core/nilclass/test_size.rb
|
1450
|
+
- test/lib/facets/core/nilclass/test_empty.rb
|
1451
|
+
- test/lib/facets/core/nilclass/test_to_f.rb
|
1452
|
+
- test/lib/facets/core/nilclass/test_to_h.rb
|
1453
|
+
- test/lib/facets/core/nilclass/test_op_fetch.rb
|
1454
|
+
- test/lib/facets/core/nilclass/test_include.rb
|
1455
|
+
- test/lib/facets/core/numeric/test_succ.rb
|
1456
|
+
- test/lib/facets/core/numeric/test_to_b.rb
|
1457
|
+
- test/lib/facets/core/numeric/test_ceil_multiple.rb
|
1458
|
+
- test/lib/facets/core/ostruct/test___update__.rb
|
1459
|
+
- test/lib/facets/core/ostruct/test___merge__.rb
|
1460
|
+
- test/lib/facets/core/ostruct/test_op_store.rb
|
1461
|
+
- test/lib/facets/core/ostruct/test_op_fetch.rb
|
1462
|
+
- test/lib/facets/core/proc/test_to_method.rb
|
1463
|
+
- test/lib/facets/core/proc/test_compose.rb
|
1464
|
+
- test/lib/facets/core/range/test_within.rb
|
1465
|
+
- test/lib/facets/core/range/test_umbrella.rb
|
1466
|
+
- test/lib/facets/core/range/test_to_r.rb
|
1467
|
+
- test/lib/facets/core/range/test_to_range.rb
|
1468
|
+
- test/lib/facets/core/regexp/test_to_regexp.rb
|
1469
|
+
- test/lib/facets/core/regexp/test_to_re.rb
|
1470
|
+
- test/lib/facets/core/regexp/test_arity.rb
|
1471
|
+
- test/lib/facets/core/string/test_push.rb
|
1472
|
+
- test/lib/facets/core/string/test_shift.rb
|
1473
|
+
- test/lib/facets/core/string/test_dresner.rb
|
1474
|
+
- test/lib/facets/core/string/test_word_filter.rb
|
1475
|
+
- test/lib/facets/core/string/test_unix_crypt.rb
|
1476
|
+
- test/lib/facets/core/string/test_camelcase.rb
|
1477
|
+
- test/lib/facets/core/string/test_humanize.rb
|
1478
|
+
- test/lib/facets/core/string/test_margin.rb
|
1479
|
+
- test/lib/facets/core/string/test_word_wrap.rb
|
1480
|
+
- test/lib/facets/core/string/test_last.rb
|
1481
|
+
- test/lib/facets/core/string/test_unpack.rb
|
1482
|
+
- test/lib/facets/core/string/test_rand_index.rb
|
1483
|
+
- test/lib/facets/core/string/test_nchar.rb
|
1484
|
+
- test/lib/facets/core/string/test_singular.rb
|
1485
|
+
- test/lib/facets/core/string/test_similarity.rb
|
1486
|
+
- test/lib/facets/core/string/test_rand_byte.rb
|
1487
|
+
- test/lib/facets/core/string/test_to_proc.rb
|
1488
|
+
- test/lib/facets/core/string/test_blank.rb
|
1489
|
+
- test/lib/facets/core/string/test_demodulize.rb
|
1490
|
+
- test/lib/facets/core/string/test_to_date.rb
|
1491
|
+
- test/lib/facets/core/string/test_chars.rb
|
1492
|
+
- test/lib/facets/core/string/test_slap.rb
|
1493
|
+
- test/lib/facets/core/string/test_capitalized.rb
|
1494
|
+
- test/lib/facets/core/string/test_basename.rb
|
1495
|
+
- test/lib/facets/core/string/test_downcase.rb
|
1496
|
+
- test/lib/facets/core/string/test_succ.rb
|
1497
|
+
- test/lib/facets/core/string/test_probability.rb
|
1498
|
+
- test/lib/facets/core/string/test_cmp.rb
|
1499
|
+
- test/lib/facets/core/string/test_whitespace.rb
|
1500
|
+
- test/lib/facets/core/string/test_at_rand.rb
|
1501
|
+
- test/lib/facets/core/string/test_first.rb
|
1502
|
+
- test/lib/facets/core/string/test_fold.rb
|
1503
|
+
- test/lib/facets/core/string/test_camelize.rb
|
1504
|
+
- test/lib/facets/core/string/test_range.rb
|
1505
|
+
- test/lib/facets/core/string/test_to_a.rb
|
1506
|
+
- test/lib/facets/core/string/test_to_b.rb
|
1507
|
+
- test/lib/facets/core/string/test_to_re.rb
|
1508
|
+
- test/lib/facets/core/string/test_line_wrap.rb
|
1509
|
+
- test/lib/facets/core/string/test_align_center.rb
|
1510
|
+
- test/lib/facets/core/string/test_words.rb
|
1511
|
+
- test/lib/facets/core/string/test_indent.rb
|
1512
|
+
- test/lib/facets/core/string/test_upcase.rb
|
1513
|
+
- test/lib/facets/core/string/test_to_const.rb
|
1514
|
+
- test/lib/facets/core/string/test_pop.rb
|
1515
|
+
- test/lib/facets/core/string/test_range_of_line.rb
|
1516
|
+
- test/lib/facets/core/string/test_frequency.rb
|
1517
|
+
- test/lib/facets/core/string/test_lowercase.rb
|
1518
|
+
- test/lib/facets/core/string/test_to_time.rb
|
1519
|
+
- test/lib/facets/core/string/test_to_arr.rb
|
1520
|
+
- test/lib/facets/core/string/test_shuffle.rb
|
1521
|
+
- test/lib/facets/core/string/test_each_char.rb
|
1522
|
+
- test/lib/facets/core/string/test_unshift.rb
|
1523
|
+
- test/lib/facets/core/string/test_each_word.rb
|
1524
|
+
- test/lib/facets/core/string/test_bracket.rb
|
1525
|
+
- test/lib/facets/core/string/test_index_all.rb
|
1526
|
+
- test/lib/facets/core/string/test_quote.rb
|
1527
|
+
- test/lib/facets/core/string/test_regesc.rb
|
1528
|
+
- test/lib/facets/core/string/test_soundex.rb
|
1529
|
+
- test/lib/facets/core/string/test_range_all.rb
|
1530
|
+
- test/lib/facets/core/string/test_mscan.rb
|
1531
|
+
- test/lib/facets/core/string/test_shatter.rb
|
1532
|
+
- test/lib/facets/core/string/test_natcmp.rb
|
1533
|
+
- test/lib/facets/core/string/test_lines.rb
|
1534
|
+
- test/lib/facets/core/string/test_modulize.rb
|
1535
|
+
- test/lib/facets/core/string/test_pathize.rb
|
1536
|
+
- test/lib/facets/core/string/test_methodize.rb
|
1537
|
+
- test/lib/facets/core/string/self
|
1538
|
+
- test/lib/facets/core/string/self/test_patterns.rb
|
1539
|
+
- test/lib/facets/core/string/self/test_rand_letter.rb
|
1540
|
+
- test/lib/facets/core/string/self/test_interpolate.rb
|
1541
|
+
- test/lib/facets/core/symbol/test_camelcase.rb
|
1542
|
+
- test/lib/facets/core/symbol/test_to_proc.rb
|
1543
|
+
- test/lib/facets/core/symbol/test_capitalize.rb
|
1544
|
+
- test/lib/facets/core/symbol/test_capitalized.rb
|
1545
|
+
- test/lib/facets/core/symbol/test_downcase.rb
|
1546
|
+
- test/lib/facets/core/symbol/test_succ.rb
|
1547
|
+
- test/lib/facets/core/symbol/test_camelize.rb
|
1548
|
+
- test/lib/facets/core/symbol/test_upcase.rb
|
1549
|
+
- test/lib/facets/core/symbol/test_not.rb
|
1550
|
+
- test/lib/facets/core/symbol/test_pad.rb
|
1551
|
+
- test/lib/facets/core/symbol/test_to_const.rb
|
1552
|
+
- test/lib/facets/core/symbol/test_underscore.rb
|
1553
|
+
- test/lib/facets/core/symbol/test_to_str.rb
|
1554
|
+
- test/lib/facets/core/time/test_change.rb
|
1555
|
+
- test/lib/facets/core/time/test_to_date.rb
|
1556
|
+
- test/lib/facets/core/time/test_to_s.rb
|
1557
|
+
- test/lib/facets/core/time/test_stamp.rb
|
1558
|
+
- test/lib/facets/core/time/test_to_time.rb
|
1559
|
+
- test/lib/facets/core/time/test_elapse.rb
|
1560
|
+
- test/lib/facets/more/test_annotation.rb
|
1561
|
+
- test/lib/facets/more/test_ansicode.rb
|
1562
|
+
- test/lib/facets/more/test_association.rb
|
1563
|
+
- test/lib/facets/more/test_bbcode.rb
|
1564
|
+
- test/lib/facets/more/test_bitmask.rb
|
1565
|
+
- test/lib/facets/more/test_classinherit.rb
|
1566
|
+
- test/lib/facets/more/test_classmethods.rb
|
1567
|
+
- test/lib/facets/more/test_coroutine.rb
|
1568
|
+
- test/lib/facets/more/test_crypt.rb
|
1569
|
+
- test/lib/facets/more/test_dictionary.rb
|
1570
|
+
- test/lib/facets/more/test_multipliers.rb
|
1571
|
+
- test/lib/facets/more/test_bytes.rb
|
1572
|
+
- test/lib/facets/more/test_enumerablepass.rb
|
1573
|
+
- test/lib/facets/more/test_floatstring.rb
|
1574
|
+
- test/lib/facets/more/test_functor.rb
|
1575
|
+
- test/lib/facets/more/test_inheritor.rb
|
1576
|
+
- test/lib/facets/more/test_interval.rb
|
1577
|
+
- test/lib/facets/more/test_lisp_format.rb
|
1578
|
+
- test/lib/facets/more/test_lisp.rb
|
1579
|
+
- test/lib/facets/more/test_lrucache.rb
|
1580
|
+
- test/lib/facets/more/test_mathconstants.rb
|
1581
|
+
- test/lib/facets/more/test_methodprobe.rb
|
1582
|
+
- test/lib/facets/more/test_multiton.rb
|
1583
|
+
- test/lib/facets/more/test_nackclass.rb
|
1584
|
+
- test/lib/facets/more/test_nilcomparable.rb
|
1585
|
+
- test/lib/facets/more/test_openobject.rb
|
1586
|
+
- test/lib/facets/more/test_paramix.rb
|
1587
|
+
- test/lib/facets/more/test_preinitialize.rb
|
1588
|
+
- test/lib/facets/more/test_snapshot.rb
|
1589
|
+
- test/lib/facets/more/test_statichash.rb
|
1590
|
+
- test/lib/facets/more/test_synchash.rb
|
1591
|
+
- test/lib/facets/more/test_syncarray.rb
|
1592
|
+
- test/lib/facets/more/test_yamlstruct.rb
|
1593
|
+
- test/lib/facets/more/test_uninheritable.rb
|
1594
|
+
- test/lib/facets/more/test_tuple.rb
|
1595
|
+
- test/lib/facets/more/test_timer.rb
|
1596
|
+
- test/lib/facets/more/test_tagiterator.rb
|
1597
|
+
- test/lib/facets/more/test_units.rb
|
1598
|
+
- test/lib/facets/more/test_times.rb
|
1599
|
+
- test/lib/facets/more/test_typecast.rb
|
1600
|
+
- test/lib/facets/more/test_promoteself.rb
|
1601
|
+
- test/lib/facets/more/test_overload.rb
|
1546
1602
|
- test/FIXTURE/ls_r
|
1547
1603
|
- test/FIXTURE/open_as_string_file
|
1548
1604
|
- test/FIXTURE/test_file.txt
|
1605
|
+
- test/FIXTURE/filelist
|
1549
1606
|
- test/FIXTURE/test_file2.txt
|
1550
1607
|
- test/FIXTURE/read_list_file
|
1551
1608
|
- test/FIXTURE/create_file
|
@@ -1554,6 +1611,8 @@ files:
|
|
1554
1611
|
- test/FIXTURE/ls_r/A/B
|
1555
1612
|
- test/FIXTURE/ls_r/A/B.txt
|
1556
1613
|
- test/FIXTURE/ls_r/A/B/C.txt
|
1614
|
+
- test/FIXTURE/filelist/testfile.txt
|
1615
|
+
- test/FIXTURE/filelist/testfile2.txt
|
1557
1616
|
- conf/facets
|
1558
1617
|
- conf/facets/noauto
|
1559
1618
|
test_files: []
|