facets 3.1.0 → 3.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/HISTORY.md +141 -0
- data/LICENSE.txt +21 -343
- data/README.md +26 -19
- data/lib/core/facets/array/arrange.rb +1 -42
- data/lib/core/facets/array/average.rb +0 -1
- data/lib/core/facets/array/before.rb +1 -1
- data/lib/core/facets/array/delete_first.rb +21 -0
- data/lib/core/facets/array/duplicates.rb +13 -0
- data/lib/core/facets/array/indexes.rb +113 -0
- data/lib/core/facets/array/nonuniq.rb +6 -8
- data/lib/core/facets/array/occurrence.rb +4 -1
- data/lib/core/facets/array/remove.rb +39 -0
- data/lib/core/facets/array/span.rb +29 -0
- data/lib/core/facets/array/split_at.rb +25 -0
- data/lib/core/facets/array/standard_deviation.rb +7 -2
- data/lib/core/facets/array/step.rb +12 -14
- data/lib/core/facets/array/to_ranges.rb +48 -0
- data/lib/core/facets/array/uniq_by.rb +3 -3
- data/lib/core/facets/binding/caller.rb +8 -2
- data/lib/core/facets/binding/op_get.rb +7 -11
- data/lib/core/facets/binding/self.rb +4 -10
- data/lib/core/facets/boolean.rb +1 -1
- data/lib/core/facets/class/descendants.rb +0 -2
- data/lib/core/facets/class.rb +2 -2
- data/lib/core/facets/comparable/bound.rb +13 -1
- data/lib/core/facets/comparable/clip.rb +3 -32
- data/lib/core/facets/denumerable.rb +0 -3
- data/lib/core/facets/dir/find.rb +20 -0
- data/lib/core/facets/dir/recurse.rb +8 -26
- data/lib/core/facets/enumerable/compact_map.rb +2 -12
- data/lib/core/facets/enumerable/defer.rb +2 -13
- data/lib/core/facets/enumerable/each_by.rb +0 -2
- data/lib/core/facets/enumerable/frequency.rb +2 -2
- data/lib/core/facets/enumerable/hinge.rb +3 -4
- data/lib/core/facets/enumerable/map_with_index.rb +3 -6
- data/lib/core/facets/enumerable/mash.rb +5 -28
- data/lib/core/facets/enumerable/uniq_by.rb +4 -8
- data/lib/core/facets/enumerable/with_position.rb +58 -0
- data/lib/core/facets/enumerator.rb +2 -75
- data/lib/core/facets/exception/error_print.rb +6 -71
- data/lib/core/facets/file/null.rb +3 -15
- data/lib/core/facets/file/read_binary.rb +3 -12
- data/lib/core/facets/hash/except.rb +0 -7
- data/lib/core/facets/hash/fetch_nested.rb +8 -9
- data/lib/core/facets/hash/graph.rb +1 -1
- data/lib/core/facets/hash/rekey.rb +3 -3
- data/lib/core/facets/hash/revalue.rb +3 -3
- data/lib/core/facets/hash/{to_proc.rb → setter.rb} +8 -9
- data/lib/core/facets/hash/slice.rb +0 -26
- data/lib/core/facets/hash/update_keys.rb +4 -11
- data/lib/core/facets/hash/update_values.rb +4 -10
- data/lib/core/facets/indexable.rb +6 -4
- data/lib/core/facets/kernel/callstack.rb +5 -24
- data/lib/core/facets/kernel/eigenclass.rb +6 -6
- data/lib/core/facets/kernel/extension.rb +3 -6
- data/lib/core/facets/kernel/functor.rb +16 -0
- data/lib/core/facets/kernel/instance_class.rb +4 -20
- data/lib/core/facets/kernel/instance_send.rb +5 -3
- data/lib/core/facets/kernel/load_relative.rb +8 -20
- data/lib/core/facets/kernel/memo.rb +4 -26
- data/lib/core/facets/kernel/meta_class.rb +10 -6
- data/lib/core/facets/kernel/object_class.rb +5 -6
- data/lib/core/facets/kernel/object_send.rb +5 -26
- data/lib/core/facets/kernel/qua_class.rb +4 -20
- data/lib/core/facets/kernel/require_all.rb +8 -20
- data/lib/core/facets/kernel/returning.rb +3 -19
- data/lib/core/facets/kernel/tap.rb +3 -36
- data/lib/core/facets/kernel/tee.rb +2 -0
- data/lib/core/facets/kernel/try.rb +38 -28
- data/lib/core/facets/kernel.rb +2 -4
- data/lib/core/facets/lazy.rb +1 -1
- data/lib/core/facets/module/alias_method_chain.rb +4 -43
- data/lib/core/facets/module/attr_setter.rb +3 -2
- data/lib/core/facets/module/can.rb +5 -16
- data/lib/core/facets/module/class_extend.rb +2 -2
- data/lib/core/facets/object/dup.rb +0 -46
- data/lib/core/facets/proc/bind.rb +0 -2
- data/lib/core/facets/proc/compose.rb +7 -28
- data/lib/core/facets/proc/to_method.rb +0 -1
- data/lib/core/facets/proc/update.rb +8 -1
- data/lib/core/facets/range/intersection.rb +42 -0
- data/lib/core/facets/range/nudge.rb +6 -8
- data/lib/core/facets/string/ascii_only.rb +2 -2
- data/lib/core/facets/string/cleanlines.rb +0 -2
- data/lib/core/facets/string/dashcase.rb +21 -0
- data/lib/core/facets/string/lchomp.rb +7 -14
- data/lib/core/facets/string/newlines.rb +0 -2
- data/lib/core/facets/string/snakecase.rb +12 -5
- data/lib/core/facets/string/words.rb +13 -1
- data/lib/core/facets/string.rb +0 -1
- data/lib/core/facets/struct/attributes.rb +2 -3
- data/lib/core/facets/time/trunc.rb +12 -5
- data/lib/core/facets/unboundmethod/arguments.rb +1 -0
- data/lib/core/facets/version.rb +1 -17
- data/lib/core/facets.rb +0 -1
- data/lib/standard/facets/argvector.rb +1 -1
- data/lib/standard/facets/cgi/escape_html.rb +14 -25
- data/lib/standard/facets/cloneable.rb +4 -51
- data/lib/standard/facets/continuation.rb +2 -56
- data/lib/standard/facets/crypt3.rb +126 -0
- data/lib/standard/facets/date/cmp.rb +32 -0
- data/lib/standard/facets/date.rb +1 -0
- data/lib/standard/facets/digest.rb +0 -1
- data/lib/standard/facets/fileutils/cp_rx.rb +0 -2
- data/lib/standard/facets/fileutils/ln_r.rb +0 -1
- data/lib/standard/facets/find/select.rb +0 -2
- data/lib/standard/facets/getoptlong.rb +3 -59
- data/lib/standard/facets/load_monitor.rb +2 -26
- data/lib/standard/facets/math/gini_coefficient.rb +5 -4
- data/lib/standard/facets/math/kldivergence.rb +8 -7
- data/lib/standard/facets/math/percentile.rb +1 -1
- data/lib/standard/facets/multiton.rb +1 -1
- data/lib/standard/facets/ostruct/initialize.rb +4 -19
- data/lib/standard/facets/ostruct/to_ostruct.rb +2 -1
- data/lib/standard/facets/ostruct.rb +0 -88
- data/lib/standard/facets/pathname/empty.rb +2 -10
- data/lib/standard/facets/pathname/glob.rb +19 -12
- data/lib/standard/facets/pathname/null.rb +3 -14
- data/lib/standard/facets/random.rb +47 -133
- data/lib/standard/facets/tuple.rb +2 -4
- data/lib/standard/facets/uri.rb +3 -2
- metadata +29 -1172
- data/.index +0 -80
- data/.yardopts +0 -10
- data/NOTICE.rdoc +0 -167
- data/demo/applique/assertion_framework.rb +0 -1
- data/demo/applique/file_helpers.rb +0 -34
- data/demo/core/array/after.md +0 -13
- data/demo/core/array/arrange.md +0 -17
- data/demo/core/array/before.md +0 -14
- data/demo/core/array/collapse.md +0 -15
- data/demo/core/array/collisions.md +0 -30
- data/demo/core/array/commonality.md +0 -31
- data/demo/core/array/conjoin.md +0 -47
- data/demo/core/array/contains.md +0 -9
- data/demo/core/array/delete_unless.md +0 -13
- data/demo/core/array/delete_values.md +0 -10
- data/demo/core/array/delete_values_at.md +0 -15
- data/demo/core/array/divide.md +0 -14
- data/demo/core/array/duplicates.md +0 -14
- data/demo/core/array/each_overlap.md +0 -12
- data/demo/core/array/each_pair.md +0 -13
- data/demo/core/array/each_value.md +0 -12
- data/demo/core/array/entropy.md +0 -13
- data/demo/core/array/extract_options.md +0 -13
- data/demo/core/array/first.md +0 -11
- data/demo/core/array/from.md +0 -11
- data/demo/core/array/ideal_entropy.md +0 -11
- data/demo/core/array/intersection.md +0 -11
- data/demo/core/array/last.md +0 -11
- data/demo/core/array/median.md +0 -23
- data/demo/core/array/merge.md +0 -15
- data/demo/core/array/missing.md +0 -10
- data/demo/core/array/mode.md +0 -9
- data/demo/core/array/nonuniq.md +0 -16
- data/demo/core/array/not_empty.md +0 -8
- data/demo/core/array/occur.md +0 -18
- data/demo/core/array/occurrence.md +0 -13
- data/demo/core/array/only.md +0 -9
- data/demo/core/array/op_pow.md +0 -10
- data/demo/core/array/pad.md +0 -28
- data/demo/core/array/peek.md +0 -10
- data/demo/core/array/poke.md +0 -15
- data/demo/core/array/probability +0 -8
- data/demo/core/array/pull.md +0 -10
- data/demo/core/array/recurse.md +0 -10
- data/demo/core/array/recursively.md +0 -20
- data/demo/core/array/reject_values.md +0 -10
- data/demo/core/array/splice.md +0 -14
- data/demo/core/array/split.md +0 -13
- data/demo/core/array/squeeze.md +0 -14
- data/demo/core/array/step.md +0 -16
- data/demo/core/array/store.md +0 -9
- data/demo/core/array/thru.md +0 -12
- data/demo/core/array/to_h.md +0 -11
- data/demo/core/array/traverse.md +0 -20
- data/demo/core/array/uniq_by.md +0 -16
- data/demo/core/array/unique_permutation.md +0 -14
- data/demo/core/array/zip.md +0 -8
- data/demo/core/binding/caller.md +0 -57
- data/demo/core/binding/defined.md +0 -10
- data/demo/core/binding/opvars.md +0 -16
- data/demo/core/binding/self.md +0 -6
- data/demo/core/class/descendants.md +0 -13
- data/demo/core/class/to_proc.md +0 -11
- data/demo/core/comparable/at_least.md +0 -11
- data/demo/core/comparable/at_most.md +0 -11
- data/demo/core/comparable/bound.md +0 -13
- data/demo/core/comparable/cap.md +0 -11
- data/demo/core/comparable/clip.md +0 -29
- data/demo/core/comparable/cmp.md +0 -18
- data/demo/core/comparable/op_get.md +0 -32
- data/demo/core/dir/ascend.md +0 -24
- data/demo/core/dir/descend.md +0 -16
- data/demo/core/dir/multiglob.md +0 -41
- data/demo/core/dir/parent.md +0 -6
- data/demo/core/dir/recurse.md +0 -41
- data/demo/core/exception/detail.md +0 -19
- data/demo/core/facets.md +0 -6
- data/demo/core/filetest/root.md +0 -13
- data/demo/core/hash/recursively.md +0 -21
- data/demo/core/indexable.md +0 -95
- data/demo/core/integer/bitmask.md +0 -46
- data/demo/core/integer/factorial.md +0 -10
- data/demo/core/integer/length.md +0 -7
- data/demo/core/integer/multiple.md +0 -12
- data/demo/core/integer/of.md +0 -11
- data/demo/core/integer/ordinal.md +0 -11
- data/demo/core/integer/times_collect.md +0 -9
- data/demo/core/matchdata/match.md +0 -7
- data/demo/core/matchdata/matchset.md +0 -7
- data/demo/core/matchdata/matchtree.md +0 -10
- data/demo/core/module/cattr.md +0 -43
- data/demo/core/module/class_extend.md +0 -64
- data/demo/core/module/class_inheritor.md +0 -126
- data/demo/core/module/copy_inheritor.md +0 -30
- data/demo/core/module/include_as.md +0 -31
- data/demo/core/module/method_space.md +0 -24
- data/demo/core/string/acronym.md +0 -9
- data/demo/core/string/align.md +0 -34
- data/demo/core/string/ascii_only.md +0 -37
- data/demo/core/string/bracket.md +0 -35
- data/demo/core/string/camelcase.md +0 -47
- data/demo/core/string/capitalized.md +0 -27
- data/demo/core/string/characters.md +0 -11
- data/demo/core/string/cleanlines.md +0 -10
- data/demo/core/string/cleave.md +0 -49
- data/demo/core/string/compress_lines.md +0 -22
- data/demo/core/string/crypt.md +0 -15
- data/demo/core/string/divide.md +0 -9
- data/demo/core/string/each_word.md +0 -11
- data/demo/core/string/edit_distance.md +0 -15
- data/demo/core/string/exclude.md +0 -15
- data/demo/core/string/expand_tabs.md +0 -69
- data/demo/core/string/fold.md +0 -14
- data/demo/core/string/indent.md +0 -65
- data/demo/core/string/index_all.md +0 -14
- data/demo/core/string/interpolate.md +0 -8
- data/demo/core/string/lchomp.md +0 -14
- data/demo/core/string/line_wrap.md +0 -7
- data/demo/core/string/lowercase.md +0 -12
- data/demo/core/string/methodize.md +0 -22
- data/demo/core/string/modulize.md +0 -22
- data/demo/core/string/mscan.md +0 -10
- data/demo/core/string/natcmp.md +0 -10
- data/demo/core/string/nchar.md +0 -9
- data/demo/core/string/newlines.md +0 -9
- data/demo/core/string/number.md +0 -27
- data/demo/core/string/op_div.md +0 -10
- data/demo/core/string/op_sub.md +0 -7
- data/demo/core/string/pathize.md +0 -22
- data/demo/core/string/quote.md +0 -20
- data/demo/core/string/random.md +0 -25
- data/demo/core/string/range.md +0 -19
- data/demo/core/string/remove.md +0 -33
- data/demo/core/string/rewrite.md +0 -9
- data/demo/core/string/shatter.md +0 -9
- data/demo/core/string/similarity.md +0 -12
- data/demo/core/string/snakecase.md +0 -14
- data/demo/core/string/splice.md +0 -28
- data/demo/core/string/squish.md +0 -27
- data/demo/core/string/store.md +0 -10
- data/demo/core/string/subtract.md +0 -8
- data/demo/core/string/titlecase.md +0 -8
- data/demo/core/string/to_re.md +0 -22
- data/demo/core/string/trim.md +0 -92
- data/demo/core/string/unbracket.md +0 -24
- data/demo/core/string/underscore.md +0 -17
- data/demo/core/string/unfold.md +0 -9
- data/demo/core/string/unindent.md +0 -65
- data/demo/core/string/unquote.md +0 -6
- data/demo/core/string/uppercase.md +0 -15
- data/demo/core/string/variablize.md +0 -7
- data/demo/core/string/word_wrap.md +0 -54
- data/demo/core/string/words.md +0 -13
- data/demo/core/string/xor.md +0 -8
- data/demo/standard/02_cloneable.rdoc +0 -46
- data/demo/standard/03_enumargs.rdoc +0 -75
- data/demo/standard/04_equitable.rdoc +0 -35
- data/demo/standard/05_instantiable.rdoc +0 -42
- data/demo/standard/basic_object.rdoc +0 -22
- data/demo/standard/memoizable.rdoc +0 -134
- data/demo/standard/mulititon.rdoc +0 -156
- data/lib/core/facets/applique/file_helpers.rb +0 -33
- data/lib/core/facets/array/intersection.rb +0 -25
- data/lib/core/facets/array/op_pow.rb +0 -12
- data/lib/core/facets/array/to_h.rb +0 -19
- data/lib/core/facets/class/singleton.rb +0 -1
- data/lib/core/facets/class/singleton_class.rb +0 -16
- data/lib/core/facets/class/subclasses.rb +0 -28
- data/lib/core/facets/dir/each_child.rb +0 -16
- data/lib/core/facets/enumerable/filter.rb +0 -33
- data/lib/core/facets/enumerable/sum.rb +0 -40
- data/lib/core/facets/exception/set_message.rb +0 -10
- data/lib/core/facets/file/write.rb +0 -24
- data/lib/core/facets/fixnum.rb +0 -7
- data/lib/core/facets/kernel/__dir__.rb +0 -28
- data/lib/core/facets/kernel/constant.rb +0 -22
- data/lib/core/facets/kernel/instance_exec.rb +0 -47
- data/lib/core/facets/kernel/p.rb +0 -24
- data/lib/core/facets/kernel/singleton_class.rb +0 -10
- data/lib/core/facets/matchdata/match.rb +0 -15
- data/lib/core/facets/method/curry.rb +0 -13
- data/lib/core/facets/numeric/negative.rb +0 -1
- data/lib/core/facets/numeric/positive.rb +0 -15
- data/lib/core/facets/object/itself.rb +0 -16
- data/lib/core/facets/object/try_dup.rb +0 -1
- data/lib/core/facets/process/daemon.rb +0 -32
- data/lib/core/facets/range/overlap.rb +0 -12
- data/lib/core/facets/string/characters.rb +0 -13
- data/lib/core/facets/string/crypt.rb +0 -22
- data/lib/core/facets/symbol/succ.rb +0 -23
- data/lib/core/facets.yml +0 -80
- data/lib/standard/facets/basicobject.rb +0 -75
- data/lib/standard/facets/digest/base64digest.rb +0 -45
- data/lib/standard/facets/ostruct/each.rb +0 -11
- data/lib/standard/facets/ostruct/merge.rb +0 -21
- data/lib/standard/facets/ostruct/op_fetch.rb +0 -29
- data/lib/standard/facets/ostruct/op_store.rb +0 -1
- data/lib/standard/facets/ostruct/to_h.rb +0 -10
- data/test/core/array/test_arrange.rb +0 -37
- data/test/core/array/test_average.rb +0 -16
- data/test/core/array/test_before.rb +0 -48
- data/test/core/array/test_collapse.rb +0 -23
- data/test/core/array/test_commonality.rb +0 -35
- data/test/core/array/test_conjoin.rb +0 -50
- data/test/core/array/test_contains.rb +0 -14
- data/test/core/array/test_delete.rb +0 -42
- data/test/core/array/test_delete_unless.rb +0 -17
- data/test/core/array/test_delete_values.rb +0 -31
- data/test/core/array/test_divide.rb +0 -24
- data/test/core/array/test_duplicates.rb +0 -29
- data/test/core/array/test_each_overlap.rb +0 -31
- data/test/core/array/test_each_pair.rb +0 -16
- data/test/core/array/test_each_value.rb +0 -16
- data/test/core/array/test_entropy.rb +0 -23
- data/test/core/array/test_extract_options.rb +0 -28
- data/test/core/array/test_first.rb +0 -17
- data/test/core/array/test_from.rb +0 -42
- data/test/core/array/test_intersection.rb +0 -19
- data/test/core/array/test_last.rb +0 -17
- data/test/core/array/test_median.rb +0 -27
- data/test/core/array/test_merge.rb +0 -27
- data/test/core/array/test_missing.rb +0 -12
- data/test/core/array/test_mode.rb +0 -17
- data/test/core/array/test_nonuniq.rb +0 -25
- data/test/core/array/test_not_empty.rb +0 -17
- data/test/core/array/test_occur.rb +0 -52
- data/test/core/array/test_occurrence.rb +0 -20
- data/test/core/array/test_only.rb +0 -17
- data/test/core/array/test_op_pow.rb +0 -13
- data/test/core/array/test_pad.rb +0 -40
- data/test/core/array/test_peek.rb +0 -28
- data/test/core/array/test_poke.rb +0 -21
- data/test/core/array/test_probability.rb +0 -18
- data/test/core/array/test_pull.rb +0 -15
- data/test/core/array/test_recurse.rb +0 -40
- data/test/core/array/test_recursively.rb +0 -33
- data/test/core/array/test_reject_values.rb +0 -17
- data/test/core/array/test_splice.rb +0 -21
- data/test/core/array/test_split.rb +0 -22
- data/test/core/array/test_squeeze.rb +0 -22
- data/test/core/array/test_standard_deviation.rb +0 -18
- data/test/core/array/test_step.rb +0 -28
- data/test/core/array/test_store.rb +0 -22
- data/test/core/array/test_to_h.rb +0 -14
- data/test/core/array/test_traverse.rb +0 -26
- data/test/core/array/test_uniq_by.rb +0 -24
- data/test/core/array/test_unique_permutation.rb +0 -23
- data/test/core/array/test_variance.rb +0 -17
- data/test/core/array/test_zip.rb +0 -13
- data/test/core/binding/test_caller.rb +0 -69
- data/test/core/binding/test_defined.rb +0 -18
- data/test/core/binding/test_op.rb +0 -24
- data/test/core/binding/test_self.rb +0 -16
- data/test/core/class/test_descendents.rb +0 -19
- data/test/core/class/test_preallocate.rb +0 -32
- data/test/core/class/test_subclasses.rb +0 -20
- data/test/core/class/test_to_proc.rb +0 -16
- data/test/core/comparable/test_bound.rb +0 -32
- data/test/core/comparable/test_cap.rb +0 -36
- data/test/core/comparable/test_clip.rb +0 -31
- data/test/core/comparable/test_cmp.rb +0 -16
- data/test/core/comparable/test_op_get.rb +0 -61
- data/test/core/denumerable_tc.rb +0 -194
- data/test/core/dir/test_ascend.rb +0 -40
- data/test/core/dir/test_descend.rb +0 -24
- data/test/core/dir/test_each_child.rb +0 -22
- data/test/core/dir/test_multiglob.rb +0 -25
- data/test/core/dir/test_parent.rb +0 -14
- data/test/core/dir/test_recurse.rb +0 -26
- data/test/core/enumerable/test_accumulate.rb +0 -44
- data/test/core/enumerable/test_cluster.rb +0 -36
- data/test/core/enumerable/test_compact_map.rb +0 -32
- data/test/core/enumerable/test_defer.rb +0 -27
- data/test/core/enumerable/test_each_by.rb +0 -49
- data/test/core/enumerable/test_every.rb +0 -33
- data/test/core/enumerable/test_ewise.rb +0 -30
- data/test/core/enumerable/test_exclude.rb +0 -15
- data/test/core/enumerable/test_expand.rb +0 -15
- data/test/core/enumerable/test_filter.rb +0 -19
- data/test/core/enumerable/test_find_yield.rb +0 -96
- data/test/core/enumerable/test_frequency.rb +0 -15
- data/test/core/enumerable/test_graph.rb +0 -42
- data/test/core/enumerable/test_hashify.rb +0 -113
- data/test/core/enumerable/test_key_by.rb +0 -22
- data/test/core/enumerable/test_map_by.rb +0 -27
- data/test/core/enumerable/test_map_send.rb +0 -26
- data/test/core/enumerable/test_map_with_index.rb +0 -23
- data/test/core/enumerable/test_mash.rb +0 -17
- data/test/core/enumerable/test_modulate.rb +0 -17
- data/test/core/enumerable/test_occur.rb +0 -40
- data/test/core/enumerable/test_only.rb +0 -40
- data/test/core/enumerable/test_per.rb +0 -19
- data/test/core/enumerable/test_purge.rb +0 -22
- data/test/core/enumerable/test_recursively.rb +0 -33
- data/test/core/enumerable/test_squeeze.rb +0 -35
- data/test/core/enumerable/test_sum.rb +0 -40
- data/test/core/enumerable/test_uniq_by.rb +0 -25
- data/test/core/enumerable/test_visit.rb +0 -14
- data/test/core/enumerator/lazy/test_squeeze.rb +0 -33
- data/test/core/enumerator/test_fx.rb +0 -16
- data/test/core/enumerator/test_new.rb +0 -21
- data/test/core/enumerator_tc.rb +0 -40
- data/test/core/exception/test_detail.rb +0 -15
- data/test/core/exception/test_raised.rb +0 -15
- data/test/core/exception/test_suppress.rb +0 -16
- data/test/core/file/test_append.rb +0 -22
- data/test/core/file/test_create.rb +0 -17
- data/test/core/file/test_ext.rb +0 -31
- data/test/core/file/test_null.rb +0 -14
- data/test/core/file/test_read_binary.rb +0 -19
- data/test/core/file/test_read_list.rb +0 -16
- data/test/core/file/test_rewrite.rb +0 -35
- data/test/core/file/test_rootname.rb +0 -13
- data/test/core/file/test_sanitize.rb +0 -32
- data/test/core/file/test_split_all.rb +0 -14
- data/test/core/file/test_write.rb +0 -22
- data/test/core/file/test_writelines.rb +0 -21
- data/test/core/filetest/test_root.rb +0 -14
- data/test/core/functor_tc.rb +0 -41
- data/test/core/hash/test_alias.rb +0 -25
- data/test/core/hash/test_argumentize.rb +0 -23
- data/test/core/hash/test_at.rb +0 -16
- data/test/core/hash/test_autonew.rb +0 -22
- data/test/core/hash/test_collate.rb +0 -61
- data/test/core/hash/test_count.rb +0 -23
- data/test/core/hash/test_data.rb +0 -35
- data/test/core/hash/test_dearray_values.rb +0 -26
- data/test/core/hash/test_deep_merge.rb +0 -31
- data/test/core/hash/test_deep_rekey.rb +0 -131
- data/test/core/hash/test_delete_at.rb +0 -18
- data/test/core/hash/test_delete_unless.rb +0 -18
- data/test/core/hash/test_delete_values.rb +0 -30
- data/test/core/hash/test_diff.rb +0 -16
- data/test/core/hash/test_each_with_key.rb +0 -16
- data/test/core/hash/test_expect.rb +0 -34
- data/test/core/hash/test_fetch_nested.rb +0 -24
- data/test/core/hash/test_graph.rb +0 -40
- data/test/core/hash/test_insert.rb +0 -20
- data/test/core/hash/test_inverse.rb +0 -20
- data/test/core/hash/test_join.rb +0 -32
- data/test/core/hash/test_keys.rb +0 -41
- data/test/core/hash/test_new_with.rb +0 -17
- data/test/core/hash/test_op_add.rb +0 -17
- data/test/core/hash/test_op_and.rb +0 -31
- data/test/core/hash/test_op_mul.rb +0 -17
- data/test/core/hash/test_op_or.rb +0 -17
- data/test/core/hash/test_op_push.rb +0 -34
- data/test/core/hash/test_op_sub.rb +0 -28
- data/test/core/hash/test_recurse.rb +0 -39
- data/test/core/hash/test_recursively.rb +0 -71
- data/test/core/hash/test_rekey.rb +0 -119
- data/test/core/hash/test_replace_each.rb +0 -17
- data/test/core/hash/test_revalue.rb +0 -98
- data/test/core/hash/test_reverse_merge.rb +0 -39
- data/test/core/hash/test_slice.rb +0 -36
- data/test/core/hash/test_stringify_keys.rb +0 -26
- data/test/core/hash/test_swap.rb +0 -15
- data/test/core/hash/test_symbolize_keys.rb +0 -26
- data/test/core/hash/test_to_mod.rb +0 -24
- data/test/core/hash/test_to_proc.rb +0 -23
- data/test/core/hash/test_to_struct.rb +0 -22
- data/test/core/hash/test_traverse.rb +0 -29
- data/test/core/hash/test_update_each.rb +0 -16
- data/test/core/hash/test_update_keys.rb +0 -21
- data/test/core/hash/test_update_values.rb +0 -15
- data/test/core/hash/test_weave.rb +0 -18
- data/test/core/hash/test_zip.rb +0 -16
- data/test/core/indexable_tc.rb +0 -226
- data/test/core/integer/test_bitmask.rb +0 -73
- data/test/core/integer/test_factorial.rb +0 -30
- data/test/core/integer/test_multiple.rb +0 -16
- data/test/core/integer/test_of.rb +0 -36
- data/test/core/integer/test_ordinal.rb +0 -27
- data/test/core/kernel/test_as.rb +0 -74
- data/test/core/kernel/test_ask.rb +0 -9
- data/test/core/kernel/test_assign.rb +0 -61
- data/test/core/kernel/test_assign_from.rb +0 -48
- data/test/core/kernel/test_attr_singleton.rb +0 -51
- data/test/core/kernel/test_blank.rb +0 -103
- data/test/core/kernel/test_callstack.rb +0 -21
- data/test/core/kernel/test_class.rb +0 -14
- data/test/core/kernel/test_complete.rb +0 -19
- data/test/core/kernel/test_constant.rb +0 -18
- data/test/core/kernel/test_d.rb +0 -10
- data/test/core/kernel/test_deep_clone.rb +0 -31
- data/test/core/kernel/test_deep_copy.rb +0 -15
- data/test/core/kernel/test_dir.rb +0 -24
- data/test/core/kernel/test_disable_warnings.rb +0 -38
- data/test/core/kernel/test_ergo.rb +0 -34
- data/test/core/kernel/test_extension.rb +0 -18
- data/test/core/kernel/test_get.rb +0 -54
- data/test/core/kernel/test_here.rb +0 -13
- data/test/core/kernel/test_hierarchical_send.rb +0 -48
- data/test/core/kernel/test_in.rb +0 -14
- data/test/core/kernel/test_instance_assign.rb +0 -19
- data/test/core/kernel/test_instance_class.rb +0 -15
- data/test/core/kernel/test_instance_extract.rb +0 -28
- data/test/core/kernel/test_instance_replace.rb +0 -47
- data/test/core/kernel/test_instance_send.rb +0 -26
- data/test/core/kernel/test_maybe.rb +0 -13
- data/test/core/kernel/test_meta_alias.rb +0 -18
- data/test/core/kernel/test_meta_class.rb +0 -33
- data/test/core/kernel/test_meta_def.rb +0 -15
- data/test/core/kernel/test_meta_eval.rb +0 -18
- data/test/core/kernel/test_method.rb +0 -20
- data/test/core/kernel/test_not.rb +0 -51
- data/test/core/kernel/test_not_nil.rb +0 -25
- data/test/core/kernel/test_object_class.rb +0 -22
- data/test/core/kernel/test_object_hexid.rb +0 -20
- data/test/core/kernel/test_object_send.rb +0 -25
- data/test/core/kernel/test_presence.rb +0 -37
- data/test/core/kernel/test_qua_class.rb +0 -25
- data/test/core/kernel/test_require_all.rb +0 -11
- data/test/core/kernel/test_respond.rb +0 -38
- data/test/core/kernel/test_returning.rb +0 -17
- data/test/core/kernel/test_silence.rb +0 -24
- data/test/core/kernel/test_singleton_class.rb +0 -15
- data/test/core/kernel/test_super_method.rb +0 -23
- data/test/core/kernel/test_tap.rb +0 -38
- data/test/core/kernel/test_temporarily.rb +0 -25
- data/test/core/kernel/test_true.rb +0 -31
- data/test/core/kernel/test_try.rb +0 -35
- data/test/core/kernel/test_val.rb +0 -30
- data/test/core/kernel/test_with.rb +0 -18
- data/test/core/kernel/test_writers.rb +0 -53
- data/test/core/matchdata/test_match.rb +0 -14
- data/test/core/matchdata/test_matchset.rb +0 -29
- data/test/core/method/test_composition.rb +0 -42
- data/test/core/module/test_abstract.rb +0 -24
- data/test/core/module/test_alias_accessor.rb +0 -27
- data/test/core/module/test_alias_method_chain.rb +0 -34
- data/test/core/module/test_alias_module_function.rb +0 -24
- data/test/core/module/test_all_instance_methods.rb +0 -27
- data/test/core/module/test_ancestor.rb +0 -16
- data/test/core/module/test_anonymous.rb +0 -18
- data/test/core/module/test_attr_setter.rb +0 -28
- data/test/core/module/test_basename.rb +0 -14
- data/test/core/module/test_can.rb +0 -22
- data/test/core/module/test_class.rb +0 -22
- data/test/core/module/test_class_def.rb +0 -22
- data/test/core/module/test_class_extend.rb +0 -73
- data/test/core/module/test_class_inheritor.rb +0 -135
- data/test/core/module/test_copy_inheritor.rb +0 -35
- data/test/core/module/test_enclosure.rb +0 -24
- data/test/core/module/test_instance_function.rb +0 -30
- data/test/core/module/test_instance_method.rb +0 -20
- data/test/core/module/test_instance_method_defined.rb +0 -38
- data/test/core/module/test_integrate.rb +0 -28
- data/test/core/module/test_is.rb +0 -50
- data/test/core/module/test_memoize.rb +0 -33
- data/test/core/module/test_method_clash.rb +0 -59
- data/test/core/module/test_method_space.rb +0 -72
- data/test/core/module/test_methodize.rb +0 -26
- data/test/core/module/test_modname.rb +0 -13
- data/test/core/module/test_module_def.rb +0 -22
- data/test/core/module/test_module_load.rb +0 -23
- data/test/core/module/test_nodef.rb +0 -19
- data/test/core/module/test_op.rb +0 -56
- data/test/core/module/test_pathize.rb +0 -25
- data/test/core/module/test_preextend.rb +0 -26
- data/test/core/module/test_redefine_method.rb +0 -30
- data/test/core/module/test_redirect_method.rb +0 -32
- data/test/core/module/test_remove.rb +0 -18
- data/test/core/module/test_rename_method.rb +0 -34
- data/test/core/module/test_revise.rb +0 -61
- data/test/core/module/test_set.rb +0 -30
- data/test/core/module/test_spacename.rb +0 -15
- data/test/core/module/test_to_obj.rb +0 -20
- data/test/core/module/test_wrap_method.rb +0 -32
- data/test/core/numeric/test_approx.rb +0 -26
- data/test/core/numeric/test_delimit.rb +0 -68
- data/test/core/numeric/test_distance.rb +0 -16
- data/test/core/numeric/test_length.rb +0 -16
- data/test/core/numeric/test_round_to.rb +0 -76
- data/test/core/numeric/test_spacing.rb +0 -17
- data/test/core/object/test_dup.rb +0 -115
- data/test/core/object/test_object_state.rb +0 -75
- data/test/core/object/test_try_dup.rb +0 -59
- data/test/core/proc/test_bind.rb +0 -29
- data/test/core/proc/test_bind_to.rb +0 -17
- data/test/core/proc/test_compose.rb +0 -27
- data/test/core/proc/test_partial.rb +0 -27
- data/test/core/proc/test_to_method.rb +0 -43
- data/test/core/proc/test_update.rb +0 -15
- data/test/core/range/test_combine.rb +0 -32
- data/test/core/range/test_nudge.rb +0 -32
- data/test/core/range/test_op_add.rb +0 -24
- data/test/core/range/test_op_sub.rb +0 -34
- data/test/core/range/test_overlap.rb +0 -15
- data/test/core/range/test_to_rng.rb +0 -20
- data/test/core/range/test_umbrella.rb +0 -32
- data/test/core/range/test_within.rb +0 -25
- data/test/core/regexp/test_arity.rb +0 -30
- data/test/core/regexp/test_multiline.rb +0 -19
- data/test/core/regexp/test_op_add.rb +0 -15
- data/test/core/regexp/test_op_or.rb +0 -16
- data/test/core/regexp/test_to_re.rb +0 -24
- data/test/core/string/test_acronym.rb +0 -14
- data/test/core/string/test_align.rb +0 -32
- data/test/core/string/test_ascii_only.rb +0 -51
- data/test/core/string/test_bracket.rb +0 -37
- data/test/core/string/test_camelcase.rb +0 -59
- data/test/core/string/test_capitalized.rb +0 -36
- data/test/core/string/test_characters.rb +0 -13
- data/test/core/string/test_cleanlines.rb +0 -12
- data/test/core/string/test_cleave.rb +0 -27
- data/test/core/string/test_cmp.rb +0 -18
- data/test/core/string/test_compress_lines.rb +0 -27
- data/test/core/string/test_crypt.rb +0 -17
- data/test/core/string/test_divide.rb +0 -17
- data/test/core/string/test_each_word.rb +0 -17
- data/test/core/string/test_edit_distance.rb +0 -20
- data/test/core/string/test_exclude.rb +0 -23
- data/test/core/string/test_expand_tabs.rb +0 -83
- data/test/core/string/test_file.rb +0 -15
- data/test/core/string/test_fold.rb +0 -21
- data/test/core/string/test_indent.rb +0 -90
- data/test/core/string/test_index_all.rb +0 -22
- data/test/core/string/test_interpolate.rb +0 -16
- data/test/core/string/test_lchomp.rb +0 -25
- data/test/core/string/test_line_wrap.rb +0 -15
- data/test/core/string/test_lowercase.rb +0 -18
- data/test/core/string/test_margin.rb +0 -16
- data/test/core/string/test_methodize.rb +0 -28
- data/test/core/string/test_modulize.rb +0 -28
- data/test/core/string/test_mscan.rb +0 -18
- data/test/core/string/test_natcmp.rb +0 -17
- data/test/core/string/test_nchar.rb +0 -17
- data/test/core/string/test_newlines.rb +0 -14
- data/test/core/string/test_number.rb +0 -44
- data/test/core/string/test_op_div.rb +0 -15
- data/test/core/string/test_op_sub.rb +0 -15
- data/test/core/string/test_pathize.rb +0 -31
- data/test/core/string/test_quote.rb +0 -41
- data/test/core/string/test_random.rb +0 -25
- data/test/core/string/test_range.rb +0 -35
- data/test/core/string/test_remove.rb +0 -50
- data/test/core/string/test_rewrite.rb +0 -17
- data/test/core/string/test_rotate.rb +0 -31
- data/test/core/string/test_shatter.rb +0 -17
- data/test/core/string/test_similarity.rb +0 -22
- data/test/core/string/test_snakecase.rb +0 -22
- data/test/core/string/test_splice.rb +0 -37
- data/test/core/string/test_squish.rb +0 -31
- data/test/core/string/test_store.rb +0 -16
- data/test/core/string/test_subtract.rb +0 -16
- data/test/core/string/test_titlecase.rb +0 -16
- data/test/core/string/test_to_re.rb +0 -35
- data/test/core/string/test_trim.rb +0 -116
- data/test/core/string/test_unbracket.rb +0 -38
- data/test/core/string/test_underscore.rb +0 -21
- data/test/core/string/test_unfold.rb +0 -17
- data/test/core/string/test_unindent.rb +0 -105
- data/test/core/string/test_unquote.rb +0 -13
- data/test/core/string/test_uppercase.rb +0 -22
- data/test/core/string/test_variablize.rb +0 -15
- data/test/core/string/test_word_wrap.rb +0 -80
- data/test/core/string/test_words.rb +0 -24
- data/test/core/string/test_xor.rb +0 -16
- data/test/core/struct/test_replace.rb +0 -18
- data/test/core/symbol/test_as_s.rb +0 -15
- data/test/core/symbol/test_bang.rb +0 -15
- data/test/core/symbol/test_chomp.rb +0 -22
- data/test/core/symbol/test_generate.rb +0 -20
- data/test/core/symbol/test_not.rb +0 -19
- data/test/core/symbol/test_op_div.rb +0 -15
- data/test/core/symbol/test_plain.rb +0 -19
- data/test/core/symbol/test_query.rb +0 -19
- data/test/core/symbol/test_setter.rb +0 -17
- data/test/core/symbol/test_succ.rb +0 -16
- data/test/core/symbol/test_thrown.rb +0 -22
- data/test/core/symbol/test_variablize.rb +0 -14
- data/test/core/time/test_ago.rb +0 -18
- data/test/core/time/test_change.rb +0 -17
- data/test/core/time/test_dst_adjustment.rb +0 -19
- data/test/core/time/test_elapse.rb +0 -15
- data/test/core/time/test_future.rb +0 -32
- data/test/core/time/test_hence.rb +0 -18
- data/test/core/time/test_in.rb +0 -18
- data/test/core/time/test_less.rb +0 -139
- data/test/core/time/test_past.rb +0 -32
- data/test/core/time/test_round_to.rb +0 -34
- data/test/core/time/test_set.rb +0 -43
- data/test/core/time/test_shift.rb +0 -135
- data/test/core/time/test_stamp.rb +0 -42
- data/test/core/time/test_to_time.rb +0 -15
- data/test/core/time/test_trunc.rb +0 -34
- data/test/core/unboundmethod/test_arguments.rb +0 -25
- data/test/standard/binding/test_block_exec.rb +0 -21
- data/test/standard/math/test_abs.rb +0 -13
- data/test/standard/math/test_acot.rb +0 -23
- data/test/standard/math/test_acoth.rb +0 -22
- data/test/standard/math/test_beta.rb +0 -19
- data/test/standard/math/test_ceil.rb +0 -22
- data/test/standard/math/test_cosec.rb +0 -19
- data/test/standard/math/test_cosech.rb +0 -19
- data/test/standard/math/test_cot.rb +0 -13
- data/test/standard/math/test_coth.rb +0 -13
- data/test/standard/math/test_distance.rb +0 -16
- data/test/standard/math/test_exp10.rb +0 -14
- data/test/standard/math/test_exp2.rb +0 -14
- data/test/standard/math/test_factorial.rb +0 -13
- data/test/standard/math/test_floor.rb +0 -23
- data/test/standard/math/test_gcd.rb +0 -18
- data/test/standard/math/test_lcm.rb +0 -13
- data/test/standard/math/test_median.rb +0 -17
- data/test/standard/math/test_percentile.rb +0 -13
- data/test/standard/math/test_pow.rb +0 -30
- data/test/standard/math/test_root.rb +0 -15
- data/test/standard/math/test_sec.rb +0 -19
- data/test/standard/math/test_sech.rb +0 -19
- data/test/standard/math/test_sign.rb +0 -20
- data/test/standard/math/test_sinc.rb +0 -15
- data/test/standard/math/test_srq.rb +0 -20
- data/test/standard/pathname/test_chdir.rb +0 -16
- data/test/standard/pathname/test_readline.rb +0 -23
- data/test/standard/test_argvector.rb +0 -64
- data/test/standard/test_cloneable.rb +0 -60
- data/test/standard/test_date.rb +0 -82
- data/test/standard/test_enumargs.rb +0 -105
- data/test/standard/test_equitable.rb +0 -46
- data/test/standard/test_instantiable.rb +0 -40
- data/test/standard/test_math.rb +0 -3
- data/test/standard/test_memoizable.rb +0 -42
- data/test/standard/test_multipliers.rb +0 -141
- data/test/standard/test_ostruct.rb +0 -191
- data/test/standard/test_random.rb +0 -241
- data/test/standard/test_shellwords.rb +0 -74
- data/test/standard/test_thread.rb +0 -24
- data/test/standard/test_timer.rb +0 -62
- data/test/standard/test_tuple.rb +0 -68
- data/test/standard/test_uri.rb +0 -50
metadata
CHANGED
|
@@ -1,283 +1,30 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: facets
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Thomas Sawyer
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
12
|
-
dependencies:
|
|
13
|
-
- !ruby/object:Gem::Dependency
|
|
14
|
-
name: lemon
|
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
|
16
|
-
requirements:
|
|
17
|
-
- - ">="
|
|
18
|
-
- !ruby/object:Gem::Version
|
|
19
|
-
version: '0'
|
|
20
|
-
type: :development
|
|
21
|
-
prerelease: false
|
|
22
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
-
requirements:
|
|
24
|
-
- - ">="
|
|
25
|
-
- !ruby/object:Gem::Version
|
|
26
|
-
version: '0'
|
|
27
|
-
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: qed
|
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
|
30
|
-
requirements:
|
|
31
|
-
- - ">="
|
|
32
|
-
- !ruby/object:Gem::Version
|
|
33
|
-
version: '0'
|
|
34
|
-
type: :development
|
|
35
|
-
prerelease: false
|
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
-
requirements:
|
|
38
|
-
- - ">="
|
|
39
|
-
- !ruby/object:Gem::Version
|
|
40
|
-
version: '0'
|
|
41
|
-
- !ruby/object:Gem::Dependency
|
|
42
|
-
name: rubytest-cli
|
|
43
|
-
requirement: !ruby/object:Gem::Requirement
|
|
44
|
-
requirements:
|
|
45
|
-
- - ">="
|
|
46
|
-
- !ruby/object:Gem::Version
|
|
47
|
-
version: '0'
|
|
48
|
-
type: :development
|
|
49
|
-
prerelease: false
|
|
50
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
-
requirements:
|
|
52
|
-
- - ">="
|
|
53
|
-
- !ruby/object:Gem::Version
|
|
54
|
-
version: '0'
|
|
55
|
-
- !ruby/object:Gem::Dependency
|
|
56
|
-
name: rake
|
|
57
|
-
requirement: !ruby/object:Gem::Requirement
|
|
58
|
-
requirements:
|
|
59
|
-
- - ">="
|
|
60
|
-
- !ruby/object:Gem::Version
|
|
61
|
-
version: '0'
|
|
62
|
-
type: :development
|
|
63
|
-
prerelease: false
|
|
64
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
-
requirements:
|
|
66
|
-
- - ">="
|
|
67
|
-
- !ruby/object:Gem::Version
|
|
68
|
-
version: '0'
|
|
69
|
-
- !ruby/object:Gem::Dependency
|
|
70
|
-
name: simplecov
|
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
|
72
|
-
requirements:
|
|
73
|
-
- - ">="
|
|
74
|
-
- !ruby/object:Gem::Version
|
|
75
|
-
version: '0'
|
|
76
|
-
type: :development
|
|
77
|
-
prerelease: false
|
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
-
requirements:
|
|
80
|
-
- - ">="
|
|
81
|
-
- !ruby/object:Gem::Version
|
|
82
|
-
version: '0'
|
|
83
|
-
- !ruby/object:Gem::Dependency
|
|
84
|
-
name: guard
|
|
85
|
-
requirement: !ruby/object:Gem::Requirement
|
|
86
|
-
requirements:
|
|
87
|
-
- - ">="
|
|
88
|
-
- !ruby/object:Gem::Version
|
|
89
|
-
version: '0'
|
|
90
|
-
type: :development
|
|
91
|
-
prerelease: false
|
|
92
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
93
|
-
requirements:
|
|
94
|
-
- - ">="
|
|
95
|
-
- !ruby/object:Gem::Version
|
|
96
|
-
version: '0'
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
97
12
|
description: Facets is the premier collection of extension methods for the Ruby programming
|
|
98
|
-
language. Facets extensions are unique by virtue of
|
|
13
|
+
language. Facets extensions are unique by virtue of their atomicity. They are stored
|
|
99
14
|
in individual files allowing for highly granular control of requirements. In addition,
|
|
100
|
-
Facets includes a few additional classes and mixins suitable to wide variety of
|
|
15
|
+
Facets includes a few additional classes and mixins suitable to a wide variety of
|
|
101
16
|
applications.
|
|
102
17
|
email:
|
|
103
18
|
- transfire@gmail.com
|
|
104
19
|
executables: []
|
|
105
20
|
extensions: []
|
|
106
|
-
extra_rdoc_files:
|
|
107
|
-
- LICENSE.txt
|
|
108
|
-
- NOTICE.rdoc
|
|
109
|
-
- CONTRIBUTING.md
|
|
110
|
-
- HISTORY.md
|
|
111
|
-
- README.md
|
|
21
|
+
extra_rdoc_files: []
|
|
112
22
|
files:
|
|
113
|
-
- ".index"
|
|
114
|
-
- ".yardopts"
|
|
115
23
|
- CONTRIBUTING.md
|
|
116
24
|
- HISTORY.md
|
|
117
25
|
- LICENSE.txt
|
|
118
|
-
- NOTICE.rdoc
|
|
119
26
|
- README.md
|
|
120
|
-
- demo/applique/assertion_framework.rb
|
|
121
|
-
- demo/applique/file_helpers.rb
|
|
122
|
-
- demo/core/array/after.md
|
|
123
|
-
- demo/core/array/arrange.md
|
|
124
|
-
- demo/core/array/before.md
|
|
125
|
-
- demo/core/array/collapse.md
|
|
126
|
-
- demo/core/array/collisions.md
|
|
127
|
-
- demo/core/array/commonality.md
|
|
128
|
-
- demo/core/array/conjoin.md
|
|
129
|
-
- demo/core/array/contains.md
|
|
130
|
-
- demo/core/array/delete_unless.md
|
|
131
|
-
- demo/core/array/delete_values.md
|
|
132
|
-
- demo/core/array/delete_values_at.md
|
|
133
|
-
- demo/core/array/divide.md
|
|
134
|
-
- demo/core/array/duplicates.md
|
|
135
|
-
- demo/core/array/each_overlap.md
|
|
136
|
-
- demo/core/array/each_pair.md
|
|
137
|
-
- demo/core/array/each_value.md
|
|
138
|
-
- demo/core/array/entropy.md
|
|
139
|
-
- demo/core/array/extract_options.md
|
|
140
|
-
- demo/core/array/first.md
|
|
141
|
-
- demo/core/array/from.md
|
|
142
|
-
- demo/core/array/ideal_entropy.md
|
|
143
|
-
- demo/core/array/intersection.md
|
|
144
|
-
- demo/core/array/last.md
|
|
145
|
-
- demo/core/array/median.md
|
|
146
|
-
- demo/core/array/merge.md
|
|
147
|
-
- demo/core/array/missing.md
|
|
148
|
-
- demo/core/array/mode.md
|
|
149
|
-
- demo/core/array/nonuniq.md
|
|
150
|
-
- demo/core/array/not_empty.md
|
|
151
|
-
- demo/core/array/occur.md
|
|
152
|
-
- demo/core/array/occurrence.md
|
|
153
|
-
- demo/core/array/only.md
|
|
154
|
-
- demo/core/array/op_pow.md
|
|
155
|
-
- demo/core/array/pad.md
|
|
156
|
-
- demo/core/array/peek.md
|
|
157
|
-
- demo/core/array/poke.md
|
|
158
|
-
- demo/core/array/probability
|
|
159
|
-
- demo/core/array/pull.md
|
|
160
|
-
- demo/core/array/recurse.md
|
|
161
|
-
- demo/core/array/recursively.md
|
|
162
|
-
- demo/core/array/reject_values.md
|
|
163
|
-
- demo/core/array/splice.md
|
|
164
|
-
- demo/core/array/split.md
|
|
165
|
-
- demo/core/array/squeeze.md
|
|
166
|
-
- demo/core/array/step.md
|
|
167
|
-
- demo/core/array/store.md
|
|
168
|
-
- demo/core/array/thru.md
|
|
169
|
-
- demo/core/array/to_h.md
|
|
170
|
-
- demo/core/array/traverse.md
|
|
171
|
-
- demo/core/array/uniq_by.md
|
|
172
|
-
- demo/core/array/unique_permutation.md
|
|
173
|
-
- demo/core/array/zip.md
|
|
174
|
-
- demo/core/binding/caller.md
|
|
175
|
-
- demo/core/binding/defined.md
|
|
176
|
-
- demo/core/binding/opvars.md
|
|
177
|
-
- demo/core/binding/self.md
|
|
178
|
-
- demo/core/class/descendants.md
|
|
179
|
-
- demo/core/class/to_proc.md
|
|
180
|
-
- demo/core/comparable/at_least.md
|
|
181
|
-
- demo/core/comparable/at_most.md
|
|
182
|
-
- demo/core/comparable/bound.md
|
|
183
|
-
- demo/core/comparable/cap.md
|
|
184
|
-
- demo/core/comparable/clip.md
|
|
185
|
-
- demo/core/comparable/cmp.md
|
|
186
|
-
- demo/core/comparable/op_get.md
|
|
187
|
-
- demo/core/dir/ascend.md
|
|
188
|
-
- demo/core/dir/descend.md
|
|
189
|
-
- demo/core/dir/multiglob.md
|
|
190
|
-
- demo/core/dir/parent.md
|
|
191
|
-
- demo/core/dir/recurse.md
|
|
192
|
-
- demo/core/exception/detail.md
|
|
193
|
-
- demo/core/facets.md
|
|
194
|
-
- demo/core/filetest/root.md
|
|
195
|
-
- demo/core/hash/recursively.md
|
|
196
|
-
- demo/core/indexable.md
|
|
197
|
-
- demo/core/integer/bitmask.md
|
|
198
|
-
- demo/core/integer/factorial.md
|
|
199
|
-
- demo/core/integer/length.md
|
|
200
|
-
- demo/core/integer/multiple.md
|
|
201
|
-
- demo/core/integer/of.md
|
|
202
|
-
- demo/core/integer/ordinal.md
|
|
203
|
-
- demo/core/integer/times_collect.md
|
|
204
|
-
- demo/core/matchdata/match.md
|
|
205
|
-
- demo/core/matchdata/matchset.md
|
|
206
|
-
- demo/core/matchdata/matchtree.md
|
|
207
|
-
- demo/core/module/cattr.md
|
|
208
|
-
- demo/core/module/class_extend.md
|
|
209
|
-
- demo/core/module/class_inheritor.md
|
|
210
|
-
- demo/core/module/copy_inheritor.md
|
|
211
|
-
- demo/core/module/include_as.md
|
|
212
|
-
- demo/core/module/method_space.md
|
|
213
|
-
- demo/core/string/acronym.md
|
|
214
|
-
- demo/core/string/align.md
|
|
215
|
-
- demo/core/string/ascii_only.md
|
|
216
|
-
- demo/core/string/bracket.md
|
|
217
|
-
- demo/core/string/camelcase.md
|
|
218
|
-
- demo/core/string/capitalized.md
|
|
219
|
-
- demo/core/string/characters.md
|
|
220
|
-
- demo/core/string/cleanlines.md
|
|
221
|
-
- demo/core/string/cleave.md
|
|
222
|
-
- demo/core/string/compress_lines.md
|
|
223
|
-
- demo/core/string/crypt.md
|
|
224
|
-
- demo/core/string/divide.md
|
|
225
|
-
- demo/core/string/each_word.md
|
|
226
|
-
- demo/core/string/edit_distance.md
|
|
227
|
-
- demo/core/string/exclude.md
|
|
228
|
-
- demo/core/string/expand_tabs.md
|
|
229
|
-
- demo/core/string/fold.md
|
|
230
|
-
- demo/core/string/indent.md
|
|
231
|
-
- demo/core/string/index_all.md
|
|
232
|
-
- demo/core/string/interpolate.md
|
|
233
|
-
- demo/core/string/lchomp.md
|
|
234
|
-
- demo/core/string/line_wrap.md
|
|
235
|
-
- demo/core/string/lowercase.md
|
|
236
|
-
- demo/core/string/methodize.md
|
|
237
|
-
- demo/core/string/modulize.md
|
|
238
|
-
- demo/core/string/mscan.md
|
|
239
|
-
- demo/core/string/natcmp.md
|
|
240
|
-
- demo/core/string/nchar.md
|
|
241
|
-
- demo/core/string/newlines.md
|
|
242
|
-
- demo/core/string/number.md
|
|
243
|
-
- demo/core/string/op_div.md
|
|
244
|
-
- demo/core/string/op_sub.md
|
|
245
|
-
- demo/core/string/pathize.md
|
|
246
|
-
- demo/core/string/quote.md
|
|
247
|
-
- demo/core/string/random.md
|
|
248
|
-
- demo/core/string/range.md
|
|
249
|
-
- demo/core/string/remove.md
|
|
250
|
-
- demo/core/string/rewrite.md
|
|
251
|
-
- demo/core/string/shatter.md
|
|
252
|
-
- demo/core/string/similarity.md
|
|
253
|
-
- demo/core/string/snakecase.md
|
|
254
|
-
- demo/core/string/splice.md
|
|
255
|
-
- demo/core/string/squish.md
|
|
256
|
-
- demo/core/string/store.md
|
|
257
|
-
- demo/core/string/subtract.md
|
|
258
|
-
- demo/core/string/titlecase.md
|
|
259
|
-
- demo/core/string/to_re.md
|
|
260
|
-
- demo/core/string/trim.md
|
|
261
|
-
- demo/core/string/unbracket.md
|
|
262
|
-
- demo/core/string/underscore.md
|
|
263
|
-
- demo/core/string/unfold.md
|
|
264
|
-
- demo/core/string/unindent.md
|
|
265
|
-
- demo/core/string/unquote.md
|
|
266
|
-
- demo/core/string/uppercase.md
|
|
267
|
-
- demo/core/string/variablize.md
|
|
268
|
-
- demo/core/string/word_wrap.md
|
|
269
|
-
- demo/core/string/words.md
|
|
270
|
-
- demo/core/string/xor.md
|
|
271
|
-
- demo/standard/02_cloneable.rdoc
|
|
272
|
-
- demo/standard/03_enumargs.rdoc
|
|
273
|
-
- demo/standard/04_equitable.rdoc
|
|
274
|
-
- demo/standard/05_instantiable.rdoc
|
|
275
|
-
- demo/standard/basic_object.rdoc
|
|
276
|
-
- demo/standard/memoizable.rdoc
|
|
277
|
-
- demo/standard/mulititon.rdoc
|
|
278
27
|
- lib/core/facets.rb
|
|
279
|
-
- lib/core/facets.yml
|
|
280
|
-
- lib/core/facets/applique/file_helpers.rb
|
|
281
28
|
- lib/core/facets/array.rb
|
|
282
29
|
- lib/core/facets/array/after.rb
|
|
283
30
|
- lib/core/facets/array/arrange.rb
|
|
@@ -289,6 +36,7 @@ files:
|
|
|
289
36
|
- lib/core/facets/array/conjoin.rb
|
|
290
37
|
- lib/core/facets/array/contains.rb
|
|
291
38
|
- lib/core/facets/array/delete.rb
|
|
39
|
+
- lib/core/facets/array/delete_first.rb
|
|
292
40
|
- lib/core/facets/array/delete_unless.rb
|
|
293
41
|
- lib/core/facets/array/delete_values.rb
|
|
294
42
|
- lib/core/facets/array/delete_values_at.rb
|
|
@@ -302,7 +50,7 @@ files:
|
|
|
302
50
|
- lib/core/facets/array/first.rb
|
|
303
51
|
- lib/core/facets/array/from.rb
|
|
304
52
|
- lib/core/facets/array/indexable.rb
|
|
305
|
-
- lib/core/facets/array/
|
|
53
|
+
- lib/core/facets/array/indexes.rb
|
|
306
54
|
- lib/core/facets/array/last.rb
|
|
307
55
|
- lib/core/facets/array/median.rb
|
|
308
56
|
- lib/core/facets/array/merge.rb
|
|
@@ -313,7 +61,6 @@ files:
|
|
|
313
61
|
- lib/core/facets/array/occur.rb
|
|
314
62
|
- lib/core/facets/array/occurrence.rb
|
|
315
63
|
- lib/core/facets/array/only.rb
|
|
316
|
-
- lib/core/facets/array/op_pow.rb
|
|
317
64
|
- lib/core/facets/array/pad.rb
|
|
318
65
|
- lib/core/facets/array/peek.rb
|
|
319
66
|
- lib/core/facets/array/poke.rb
|
|
@@ -322,14 +69,17 @@ files:
|
|
|
322
69
|
- lib/core/facets/array/recurse.rb
|
|
323
70
|
- lib/core/facets/array/recursively.rb
|
|
324
71
|
- lib/core/facets/array/reject_values.rb
|
|
72
|
+
- lib/core/facets/array/remove.rb
|
|
73
|
+
- lib/core/facets/array/span.rb
|
|
325
74
|
- lib/core/facets/array/splice.rb
|
|
326
75
|
- lib/core/facets/array/split.rb
|
|
76
|
+
- lib/core/facets/array/split_at.rb
|
|
327
77
|
- lib/core/facets/array/squeeze.rb
|
|
328
78
|
- lib/core/facets/array/standard_deviation.rb
|
|
329
79
|
- lib/core/facets/array/step.rb
|
|
330
80
|
- lib/core/facets/array/store.rb
|
|
331
81
|
- lib/core/facets/array/thru.rb
|
|
332
|
-
- lib/core/facets/array/
|
|
82
|
+
- lib/core/facets/array/to_ranges.rb
|
|
333
83
|
- lib/core/facets/array/traverse.rb
|
|
334
84
|
- lib/core/facets/array/uniq_by.rb
|
|
335
85
|
- lib/core/facets/array/unique_permutation.rb
|
|
@@ -356,9 +106,6 @@ files:
|
|
|
356
106
|
- lib/core/facets/class/methodize.rb
|
|
357
107
|
- lib/core/facets/class/pathize.rb
|
|
358
108
|
- lib/core/facets/class/preallocate.rb
|
|
359
|
-
- lib/core/facets/class/singleton.rb
|
|
360
|
-
- lib/core/facets/class/singleton_class.rb
|
|
361
|
-
- lib/core/facets/class/subclasses.rb
|
|
362
109
|
- lib/core/facets/class/to_proc.rb
|
|
363
110
|
- lib/core/facets/comparable.rb
|
|
364
111
|
- lib/core/facets/comparable/at_least.rb
|
|
@@ -372,7 +119,7 @@ files:
|
|
|
372
119
|
- lib/core/facets/dir.rb
|
|
373
120
|
- lib/core/facets/dir/ascend.rb
|
|
374
121
|
- lib/core/facets/dir/descend.rb
|
|
375
|
-
- lib/core/facets/dir/
|
|
122
|
+
- lib/core/facets/dir/find.rb
|
|
376
123
|
- lib/core/facets/dir/lookup.rb
|
|
377
124
|
- lib/core/facets/dir/multiglob.rb
|
|
378
125
|
- lib/core/facets/dir/parent.rb
|
|
@@ -390,7 +137,6 @@ files:
|
|
|
390
137
|
- lib/core/facets/enumerable/ewise.rb
|
|
391
138
|
- lib/core/facets/enumerable/exclude.rb
|
|
392
139
|
- lib/core/facets/enumerable/expand.rb
|
|
393
|
-
- lib/core/facets/enumerable/filter.rb
|
|
394
140
|
- lib/core/facets/enumerable/find_yield.rb
|
|
395
141
|
- lib/core/facets/enumerable/frequency.rb
|
|
396
142
|
- lib/core/facets/enumerable/graph.rb
|
|
@@ -414,11 +160,11 @@ files:
|
|
|
414
160
|
- lib/core/facets/enumerable/purge.rb
|
|
415
161
|
- lib/core/facets/enumerable/recursively.rb
|
|
416
162
|
- lib/core/facets/enumerable/squeeze.rb
|
|
417
|
-
- lib/core/facets/enumerable/sum.rb
|
|
418
163
|
- lib/core/facets/enumerable/unassociate.rb
|
|
419
164
|
- lib/core/facets/enumerable/uniq_by.rb
|
|
420
165
|
- lib/core/facets/enumerable/value_by.rb
|
|
421
166
|
- lib/core/facets/enumerable/visit.rb
|
|
167
|
+
- lib/core/facets/enumerable/with_position.rb
|
|
422
168
|
- lib/core/facets/enumerable/zip_map.rb
|
|
423
169
|
- lib/core/facets/enumerator.rb
|
|
424
170
|
- lib/core/facets/enumerator/fx.rb
|
|
@@ -428,7 +174,6 @@ files:
|
|
|
428
174
|
- lib/core/facets/exception/detail.rb
|
|
429
175
|
- lib/core/facets/exception/error_print.rb
|
|
430
176
|
- lib/core/facets/exception/raised.rb
|
|
431
|
-
- lib/core/facets/exception/set_message.rb
|
|
432
177
|
- lib/core/facets/exception/suppress.rb
|
|
433
178
|
- lib/core/facets/file.rb
|
|
434
179
|
- lib/core/facets/file/append.rb
|
|
@@ -446,7 +191,6 @@ files:
|
|
|
446
191
|
- lib/core/facets/file/sanitize.rb
|
|
447
192
|
- lib/core/facets/file/split_all.rb
|
|
448
193
|
- lib/core/facets/file/split_root.rb
|
|
449
|
-
- lib/core/facets/file/write.rb
|
|
450
194
|
- lib/core/facets/file/writelines.rb
|
|
451
195
|
- lib/core/facets/filetest.rb
|
|
452
196
|
- lib/core/facets/filetest/absolute.rb
|
|
@@ -455,7 +199,6 @@ files:
|
|
|
455
199
|
- lib/core/facets/filetest/root.rb
|
|
456
200
|
- lib/core/facets/filetest/safe.rb
|
|
457
201
|
- lib/core/facets/filetest/separator_pattern.rb
|
|
458
|
-
- lib/core/facets/fixnum.rb
|
|
459
202
|
- lib/core/facets/float.rb
|
|
460
203
|
- lib/core/facets/float/round_to.rb
|
|
461
204
|
- lib/core/facets/functor.rb
|
|
@@ -499,6 +242,7 @@ files:
|
|
|
499
242
|
- lib/core/facets/hash/replace_each.rb
|
|
500
243
|
- lib/core/facets/hash/revalue.rb
|
|
501
244
|
- lib/core/facets/hash/reverse_merge.rb
|
|
245
|
+
- lib/core/facets/hash/setter.rb
|
|
502
246
|
- lib/core/facets/hash/slice.rb
|
|
503
247
|
- lib/core/facets/hash/stringify_keys.rb
|
|
504
248
|
- lib/core/facets/hash/subset.rb
|
|
@@ -506,7 +250,6 @@ files:
|
|
|
506
250
|
- lib/core/facets/hash/symbolize_keys.rb
|
|
507
251
|
- lib/core/facets/hash/to_mod.rb
|
|
508
252
|
- lib/core/facets/hash/to_options.rb
|
|
509
|
-
- lib/core/facets/hash/to_proc.rb
|
|
510
253
|
- lib/core/facets/hash/to_struct.rb
|
|
511
254
|
- lib/core/facets/hash/traverse.rb
|
|
512
255
|
- lib/core/facets/hash/update.rb
|
|
@@ -526,7 +269,6 @@ files:
|
|
|
526
269
|
- lib/core/facets/integer/roman.rb
|
|
527
270
|
- lib/core/facets/kernel.rb
|
|
528
271
|
- lib/core/facets/kernel/__class__.rb
|
|
529
|
-
- lib/core/facets/kernel/__dir__.rb
|
|
530
272
|
- lib/core/facets/kernel/__get__.rb
|
|
531
273
|
- lib/core/facets/kernel/__set__.rb
|
|
532
274
|
- lib/core/facets/kernel/as.rb
|
|
@@ -539,7 +281,6 @@ files:
|
|
|
539
281
|
- lib/core/facets/kernel/callstack.rb
|
|
540
282
|
- lib/core/facets/kernel/case.rb
|
|
541
283
|
- lib/core/facets/kernel/complete.rb
|
|
542
|
-
- lib/core/facets/kernel/constant.rb
|
|
543
284
|
- lib/core/facets/kernel/d.rb
|
|
544
285
|
- lib/core/facets/kernel/deep_clone.rb
|
|
545
286
|
- lib/core/facets/kernel/deep_copy.rb
|
|
@@ -552,13 +293,13 @@ files:
|
|
|
552
293
|
- lib/core/facets/kernel/extend.rb
|
|
553
294
|
- lib/core/facets/kernel/extension.rb
|
|
554
295
|
- lib/core/facets/kernel/false.rb
|
|
296
|
+
- lib/core/facets/kernel/functor.rb
|
|
555
297
|
- lib/core/facets/kernel/here.rb
|
|
556
298
|
- lib/core/facets/kernel/hierarchical_send.rb
|
|
557
299
|
- lib/core/facets/kernel/identical.rb
|
|
558
300
|
- lib/core/facets/kernel/in.rb
|
|
559
301
|
- lib/core/facets/kernel/instance_assign.rb
|
|
560
302
|
- lib/core/facets/kernel/instance_class.rb
|
|
561
|
-
- lib/core/facets/kernel/instance_exec.rb
|
|
562
303
|
- lib/core/facets/kernel/instance_extract.rb
|
|
563
304
|
- lib/core/facets/kernel/instance_replace.rb
|
|
564
305
|
- lib/core/facets/kernel/instance_send.rb
|
|
@@ -579,7 +320,6 @@ files:
|
|
|
579
320
|
- lib/core/facets/kernel/object_class.rb
|
|
580
321
|
- lib/core/facets/kernel/object_hexid.rb
|
|
581
322
|
- lib/core/facets/kernel/object_send.rb
|
|
582
|
-
- lib/core/facets/kernel/p.rb
|
|
583
323
|
- lib/core/facets/kernel/presence.rb
|
|
584
324
|
- lib/core/facets/kernel/present.rb
|
|
585
325
|
- lib/core/facets/kernel/qua_class.rb
|
|
@@ -588,9 +328,9 @@ files:
|
|
|
588
328
|
- lib/core/facets/kernel/returning.rb
|
|
589
329
|
- lib/core/facets/kernel/silence.rb
|
|
590
330
|
- lib/core/facets/kernel/silence_warnings.rb
|
|
591
|
-
- lib/core/facets/kernel/singleton_class.rb
|
|
592
331
|
- lib/core/facets/kernel/super_method.rb
|
|
593
332
|
- lib/core/facets/kernel/tap.rb
|
|
333
|
+
- lib/core/facets/kernel/tee.rb
|
|
594
334
|
- lib/core/facets/kernel/temporarily.rb
|
|
595
335
|
- lib/core/facets/kernel/trap_chain.rb
|
|
596
336
|
- lib/core/facets/kernel/true.rb
|
|
@@ -604,13 +344,11 @@ files:
|
|
|
604
344
|
- lib/core/facets/load_path.rb
|
|
605
345
|
- lib/core/facets/load_path/search.rb
|
|
606
346
|
- lib/core/facets/matchdata.rb
|
|
607
|
-
- lib/core/facets/matchdata/match.rb
|
|
608
347
|
- lib/core/facets/matchdata/matchset.rb
|
|
609
348
|
- lib/core/facets/matchdata/matchtree.rb
|
|
610
349
|
- lib/core/facets/metaid.rb
|
|
611
350
|
- lib/core/facets/method.rb
|
|
612
351
|
- lib/core/facets/method/composition.rb
|
|
613
|
-
- lib/core/facets/method/curry.rb
|
|
614
352
|
- lib/core/facets/method/memoize.rb
|
|
615
353
|
- lib/core/facets/method/op_mul.rb
|
|
616
354
|
- lib/core/facets/method/op_pow.rb
|
|
@@ -688,17 +426,13 @@ files:
|
|
|
688
426
|
- lib/core/facets/numeric/delimit.rb
|
|
689
427
|
- lib/core/facets/numeric/distance.rb
|
|
690
428
|
- lib/core/facets/numeric/length.rb
|
|
691
|
-
- lib/core/facets/numeric/negative.rb
|
|
692
|
-
- lib/core/facets/numeric/positive.rb
|
|
693
429
|
- lib/core/facets/numeric/range.rb
|
|
694
430
|
- lib/core/facets/numeric/round_to.rb
|
|
695
431
|
- lib/core/facets/numeric/spacing.rb
|
|
696
432
|
- lib/core/facets/object.rb
|
|
697
433
|
- lib/core/facets/object/clone.rb
|
|
698
434
|
- lib/core/facets/object/dup.rb
|
|
699
|
-
- lib/core/facets/object/itself.rb
|
|
700
435
|
- lib/core/facets/object/object_state.rb
|
|
701
|
-
- lib/core/facets/object/try_dup.rb
|
|
702
436
|
- lib/core/facets/objectspace.rb
|
|
703
437
|
- lib/core/facets/objectspace/classes.rb
|
|
704
438
|
- lib/core/facets/objectspace/op_fetch.rb
|
|
@@ -711,13 +445,12 @@ files:
|
|
|
711
445
|
- lib/core/facets/proc/update.rb
|
|
712
446
|
- lib/core/facets/proc/wrap.rb
|
|
713
447
|
- lib/core/facets/process.rb
|
|
714
|
-
- lib/core/facets/process/daemon.rb
|
|
715
448
|
- lib/core/facets/range.rb
|
|
716
449
|
- lib/core/facets/range/combine.rb
|
|
450
|
+
- lib/core/facets/range/intersection.rb
|
|
717
451
|
- lib/core/facets/range/nudge.rb
|
|
718
452
|
- lib/core/facets/range/op_add.rb
|
|
719
453
|
- lib/core/facets/range/op_sub.rb
|
|
720
|
-
- lib/core/facets/range/overlap.rb
|
|
721
454
|
- lib/core/facets/range/quantile.rb
|
|
722
455
|
- lib/core/facets/range/to_rng.rb
|
|
723
456
|
- lib/core/facets/range/umbrella.rb
|
|
@@ -738,12 +471,11 @@ files:
|
|
|
738
471
|
- lib/core/facets/string/briefcase.rb
|
|
739
472
|
- lib/core/facets/string/camelcase.rb
|
|
740
473
|
- lib/core/facets/string/capitalized.rb
|
|
741
|
-
- lib/core/facets/string/characters.rb
|
|
742
474
|
- lib/core/facets/string/cleanlines.rb
|
|
743
475
|
- lib/core/facets/string/cleave.rb
|
|
744
476
|
- lib/core/facets/string/cmp.rb
|
|
745
477
|
- lib/core/facets/string/compress_lines.rb
|
|
746
|
-
- lib/core/facets/string/
|
|
478
|
+
- lib/core/facets/string/dashcase.rb
|
|
747
479
|
- lib/core/facets/string/divide.rb
|
|
748
480
|
- lib/core/facets/string/each_match.rb
|
|
749
481
|
- lib/core/facets/string/each_word.rb
|
|
@@ -819,7 +551,6 @@ files:
|
|
|
819
551
|
- lib/core/facets/symbol/query.rb
|
|
820
552
|
- lib/core/facets/symbol/reader.rb
|
|
821
553
|
- lib/core/facets/symbol/setter.rb
|
|
822
|
-
- lib/core/facets/symbol/succ.rb
|
|
823
554
|
- lib/core/facets/symbol/thrown.rb
|
|
824
555
|
- lib/core/facets/symbol/variablize.rb
|
|
825
556
|
- lib/core/facets/symbol/writer.rb
|
|
@@ -844,7 +575,6 @@ files:
|
|
|
844
575
|
- lib/core/facets/version.rb
|
|
845
576
|
- lib/standard/facets/against.rb
|
|
846
577
|
- lib/standard/facets/argvector.rb
|
|
847
|
-
- lib/standard/facets/basicobject.rb
|
|
848
578
|
- lib/standard/facets/binding/block_exec.rb
|
|
849
579
|
- lib/standard/facets/cgi.rb
|
|
850
580
|
- lib/standard/facets/cgi/esc.rb
|
|
@@ -853,9 +583,10 @@ files:
|
|
|
853
583
|
- lib/standard/facets/cli.rb
|
|
854
584
|
- lib/standard/facets/cloneable.rb
|
|
855
585
|
- lib/standard/facets/continuation.rb
|
|
586
|
+
- lib/standard/facets/crypt3.rb
|
|
856
587
|
- lib/standard/facets/date.rb
|
|
588
|
+
- lib/standard/facets/date/cmp.rb
|
|
857
589
|
- lib/standard/facets/digest.rb
|
|
858
|
-
- lib/standard/facets/digest/base64digest.rb
|
|
859
590
|
- lib/standard/facets/digest/salted_digest.rb
|
|
860
591
|
- lib/standard/facets/enumargs.rb
|
|
861
592
|
- lib/standard/facets/equitable.rb
|
|
@@ -953,12 +684,7 @@ files:
|
|
|
953
684
|
- lib/standard/facets/nullclass.rb
|
|
954
685
|
- lib/standard/facets/opesc.rb
|
|
955
686
|
- lib/standard/facets/ostruct.rb
|
|
956
|
-
- lib/standard/facets/ostruct/each.rb
|
|
957
687
|
- lib/standard/facets/ostruct/initialize.rb
|
|
958
|
-
- lib/standard/facets/ostruct/merge.rb
|
|
959
|
-
- lib/standard/facets/ostruct/op_fetch.rb
|
|
960
|
-
- lib/standard/facets/ostruct/op_store.rb
|
|
961
|
-
- lib/standard/facets/ostruct/to_h.rb
|
|
962
688
|
- lib/standard/facets/ostruct/to_ostruct.rb
|
|
963
689
|
- lib/standard/facets/pathname.rb
|
|
964
690
|
- lib/standard/facets/pathname/chdir.rb
|
|
@@ -1001,445 +727,12 @@ files:
|
|
|
1001
727
|
- lib/standard/facets/yaml/kernel.rb
|
|
1002
728
|
- lib/standard/facets/yaml/read.rb
|
|
1003
729
|
- lib/standard/facets/zlib.rb
|
|
1004
|
-
|
|
1005
|
-
- test/core/array/test_average.rb
|
|
1006
|
-
- test/core/array/test_before.rb
|
|
1007
|
-
- test/core/array/test_collapse.rb
|
|
1008
|
-
- test/core/array/test_commonality.rb
|
|
1009
|
-
- test/core/array/test_conjoin.rb
|
|
1010
|
-
- test/core/array/test_contains.rb
|
|
1011
|
-
- test/core/array/test_delete.rb
|
|
1012
|
-
- test/core/array/test_delete_unless.rb
|
|
1013
|
-
- test/core/array/test_delete_values.rb
|
|
1014
|
-
- test/core/array/test_divide.rb
|
|
1015
|
-
- test/core/array/test_duplicates.rb
|
|
1016
|
-
- test/core/array/test_each_overlap.rb
|
|
1017
|
-
- test/core/array/test_each_pair.rb
|
|
1018
|
-
- test/core/array/test_each_value.rb
|
|
1019
|
-
- test/core/array/test_entropy.rb
|
|
1020
|
-
- test/core/array/test_extract_options.rb
|
|
1021
|
-
- test/core/array/test_first.rb
|
|
1022
|
-
- test/core/array/test_from.rb
|
|
1023
|
-
- test/core/array/test_intersection.rb
|
|
1024
|
-
- test/core/array/test_last.rb
|
|
1025
|
-
- test/core/array/test_median.rb
|
|
1026
|
-
- test/core/array/test_merge.rb
|
|
1027
|
-
- test/core/array/test_missing.rb
|
|
1028
|
-
- test/core/array/test_mode.rb
|
|
1029
|
-
- test/core/array/test_nonuniq.rb
|
|
1030
|
-
- test/core/array/test_not_empty.rb
|
|
1031
|
-
- test/core/array/test_occur.rb
|
|
1032
|
-
- test/core/array/test_occurrence.rb
|
|
1033
|
-
- test/core/array/test_only.rb
|
|
1034
|
-
- test/core/array/test_op_pow.rb
|
|
1035
|
-
- test/core/array/test_pad.rb
|
|
1036
|
-
- test/core/array/test_peek.rb
|
|
1037
|
-
- test/core/array/test_poke.rb
|
|
1038
|
-
- test/core/array/test_probability.rb
|
|
1039
|
-
- test/core/array/test_pull.rb
|
|
1040
|
-
- test/core/array/test_recurse.rb
|
|
1041
|
-
- test/core/array/test_recursively.rb
|
|
1042
|
-
- test/core/array/test_reject_values.rb
|
|
1043
|
-
- test/core/array/test_splice.rb
|
|
1044
|
-
- test/core/array/test_split.rb
|
|
1045
|
-
- test/core/array/test_squeeze.rb
|
|
1046
|
-
- test/core/array/test_standard_deviation.rb
|
|
1047
|
-
- test/core/array/test_step.rb
|
|
1048
|
-
- test/core/array/test_store.rb
|
|
1049
|
-
- test/core/array/test_to_h.rb
|
|
1050
|
-
- test/core/array/test_traverse.rb
|
|
1051
|
-
- test/core/array/test_uniq_by.rb
|
|
1052
|
-
- test/core/array/test_unique_permutation.rb
|
|
1053
|
-
- test/core/array/test_variance.rb
|
|
1054
|
-
- test/core/array/test_zip.rb
|
|
1055
|
-
- test/core/binding/test_caller.rb
|
|
1056
|
-
- test/core/binding/test_defined.rb
|
|
1057
|
-
- test/core/binding/test_op.rb
|
|
1058
|
-
- test/core/binding/test_self.rb
|
|
1059
|
-
- test/core/class/test_descendents.rb
|
|
1060
|
-
- test/core/class/test_preallocate.rb
|
|
1061
|
-
- test/core/class/test_subclasses.rb
|
|
1062
|
-
- test/core/class/test_to_proc.rb
|
|
1063
|
-
- test/core/comparable/test_bound.rb
|
|
1064
|
-
- test/core/comparable/test_cap.rb
|
|
1065
|
-
- test/core/comparable/test_clip.rb
|
|
1066
|
-
- test/core/comparable/test_cmp.rb
|
|
1067
|
-
- test/core/comparable/test_op_get.rb
|
|
1068
|
-
- test/core/denumerable_tc.rb
|
|
1069
|
-
- test/core/dir/test_ascend.rb
|
|
1070
|
-
- test/core/dir/test_descend.rb
|
|
1071
|
-
- test/core/dir/test_each_child.rb
|
|
1072
|
-
- test/core/dir/test_multiglob.rb
|
|
1073
|
-
- test/core/dir/test_parent.rb
|
|
1074
|
-
- test/core/dir/test_recurse.rb
|
|
1075
|
-
- test/core/enumerable/test_accumulate.rb
|
|
1076
|
-
- test/core/enumerable/test_cluster.rb
|
|
1077
|
-
- test/core/enumerable/test_compact_map.rb
|
|
1078
|
-
- test/core/enumerable/test_defer.rb
|
|
1079
|
-
- test/core/enumerable/test_each_by.rb
|
|
1080
|
-
- test/core/enumerable/test_every.rb
|
|
1081
|
-
- test/core/enumerable/test_ewise.rb
|
|
1082
|
-
- test/core/enumerable/test_exclude.rb
|
|
1083
|
-
- test/core/enumerable/test_expand.rb
|
|
1084
|
-
- test/core/enumerable/test_filter.rb
|
|
1085
|
-
- test/core/enumerable/test_find_yield.rb
|
|
1086
|
-
- test/core/enumerable/test_frequency.rb
|
|
1087
|
-
- test/core/enumerable/test_graph.rb
|
|
1088
|
-
- test/core/enumerable/test_hashify.rb
|
|
1089
|
-
- test/core/enumerable/test_key_by.rb
|
|
1090
|
-
- test/core/enumerable/test_map_by.rb
|
|
1091
|
-
- test/core/enumerable/test_map_send.rb
|
|
1092
|
-
- test/core/enumerable/test_map_with_index.rb
|
|
1093
|
-
- test/core/enumerable/test_mash.rb
|
|
1094
|
-
- test/core/enumerable/test_modulate.rb
|
|
1095
|
-
- test/core/enumerable/test_occur.rb
|
|
1096
|
-
- test/core/enumerable/test_only.rb
|
|
1097
|
-
- test/core/enumerable/test_per.rb
|
|
1098
|
-
- test/core/enumerable/test_purge.rb
|
|
1099
|
-
- test/core/enumerable/test_recursively.rb
|
|
1100
|
-
- test/core/enumerable/test_squeeze.rb
|
|
1101
|
-
- test/core/enumerable/test_sum.rb
|
|
1102
|
-
- test/core/enumerable/test_uniq_by.rb
|
|
1103
|
-
- test/core/enumerable/test_visit.rb
|
|
1104
|
-
- test/core/enumerator/lazy/test_squeeze.rb
|
|
1105
|
-
- test/core/enumerator/test_fx.rb
|
|
1106
|
-
- test/core/enumerator/test_new.rb
|
|
1107
|
-
- test/core/enumerator_tc.rb
|
|
1108
|
-
- test/core/exception/test_detail.rb
|
|
1109
|
-
- test/core/exception/test_raised.rb
|
|
1110
|
-
- test/core/exception/test_suppress.rb
|
|
1111
|
-
- test/core/file/test_append.rb
|
|
1112
|
-
- test/core/file/test_create.rb
|
|
1113
|
-
- test/core/file/test_ext.rb
|
|
1114
|
-
- test/core/file/test_null.rb
|
|
1115
|
-
- test/core/file/test_read_binary.rb
|
|
1116
|
-
- test/core/file/test_read_list.rb
|
|
1117
|
-
- test/core/file/test_rewrite.rb
|
|
1118
|
-
- test/core/file/test_rootname.rb
|
|
1119
|
-
- test/core/file/test_sanitize.rb
|
|
1120
|
-
- test/core/file/test_split_all.rb
|
|
1121
|
-
- test/core/file/test_write.rb
|
|
1122
|
-
- test/core/file/test_writelines.rb
|
|
1123
|
-
- test/core/filetest/test_root.rb
|
|
1124
|
-
- test/core/functor_tc.rb
|
|
1125
|
-
- test/core/hash/test_alias.rb
|
|
1126
|
-
- test/core/hash/test_argumentize.rb
|
|
1127
|
-
- test/core/hash/test_at.rb
|
|
1128
|
-
- test/core/hash/test_autonew.rb
|
|
1129
|
-
- test/core/hash/test_collate.rb
|
|
1130
|
-
- test/core/hash/test_count.rb
|
|
1131
|
-
- test/core/hash/test_data.rb
|
|
1132
|
-
- test/core/hash/test_dearray_values.rb
|
|
1133
|
-
- test/core/hash/test_deep_merge.rb
|
|
1134
|
-
- test/core/hash/test_deep_rekey.rb
|
|
1135
|
-
- test/core/hash/test_delete_at.rb
|
|
1136
|
-
- test/core/hash/test_delete_unless.rb
|
|
1137
|
-
- test/core/hash/test_delete_values.rb
|
|
1138
|
-
- test/core/hash/test_diff.rb
|
|
1139
|
-
- test/core/hash/test_each_with_key.rb
|
|
1140
|
-
- test/core/hash/test_expect.rb
|
|
1141
|
-
- test/core/hash/test_fetch_nested.rb
|
|
1142
|
-
- test/core/hash/test_graph.rb
|
|
1143
|
-
- test/core/hash/test_insert.rb
|
|
1144
|
-
- test/core/hash/test_inverse.rb
|
|
1145
|
-
- test/core/hash/test_join.rb
|
|
1146
|
-
- test/core/hash/test_keys.rb
|
|
1147
|
-
- test/core/hash/test_new_with.rb
|
|
1148
|
-
- test/core/hash/test_op_add.rb
|
|
1149
|
-
- test/core/hash/test_op_and.rb
|
|
1150
|
-
- test/core/hash/test_op_mul.rb
|
|
1151
|
-
- test/core/hash/test_op_or.rb
|
|
1152
|
-
- test/core/hash/test_op_push.rb
|
|
1153
|
-
- test/core/hash/test_op_sub.rb
|
|
1154
|
-
- test/core/hash/test_recurse.rb
|
|
1155
|
-
- test/core/hash/test_recursively.rb
|
|
1156
|
-
- test/core/hash/test_rekey.rb
|
|
1157
|
-
- test/core/hash/test_replace_each.rb
|
|
1158
|
-
- test/core/hash/test_revalue.rb
|
|
1159
|
-
- test/core/hash/test_reverse_merge.rb
|
|
1160
|
-
- test/core/hash/test_slice.rb
|
|
1161
|
-
- test/core/hash/test_stringify_keys.rb
|
|
1162
|
-
- test/core/hash/test_swap.rb
|
|
1163
|
-
- test/core/hash/test_symbolize_keys.rb
|
|
1164
|
-
- test/core/hash/test_to_mod.rb
|
|
1165
|
-
- test/core/hash/test_to_proc.rb
|
|
1166
|
-
- test/core/hash/test_to_struct.rb
|
|
1167
|
-
- test/core/hash/test_traverse.rb
|
|
1168
|
-
- test/core/hash/test_update_each.rb
|
|
1169
|
-
- test/core/hash/test_update_keys.rb
|
|
1170
|
-
- test/core/hash/test_update_values.rb
|
|
1171
|
-
- test/core/hash/test_weave.rb
|
|
1172
|
-
- test/core/hash/test_zip.rb
|
|
1173
|
-
- test/core/indexable_tc.rb
|
|
1174
|
-
- test/core/integer/test_bitmask.rb
|
|
1175
|
-
- test/core/integer/test_factorial.rb
|
|
1176
|
-
- test/core/integer/test_multiple.rb
|
|
1177
|
-
- test/core/integer/test_of.rb
|
|
1178
|
-
- test/core/integer/test_ordinal.rb
|
|
1179
|
-
- test/core/kernel/test_as.rb
|
|
1180
|
-
- test/core/kernel/test_ask.rb
|
|
1181
|
-
- test/core/kernel/test_assign.rb
|
|
1182
|
-
- test/core/kernel/test_assign_from.rb
|
|
1183
|
-
- test/core/kernel/test_attr_singleton.rb
|
|
1184
|
-
- test/core/kernel/test_blank.rb
|
|
1185
|
-
- test/core/kernel/test_callstack.rb
|
|
1186
|
-
- test/core/kernel/test_class.rb
|
|
1187
|
-
- test/core/kernel/test_complete.rb
|
|
1188
|
-
- test/core/kernel/test_constant.rb
|
|
1189
|
-
- test/core/kernel/test_d.rb
|
|
1190
|
-
- test/core/kernel/test_deep_clone.rb
|
|
1191
|
-
- test/core/kernel/test_deep_copy.rb
|
|
1192
|
-
- test/core/kernel/test_dir.rb
|
|
1193
|
-
- test/core/kernel/test_disable_warnings.rb
|
|
1194
|
-
- test/core/kernel/test_ergo.rb
|
|
1195
|
-
- test/core/kernel/test_extension.rb
|
|
1196
|
-
- test/core/kernel/test_get.rb
|
|
1197
|
-
- test/core/kernel/test_here.rb
|
|
1198
|
-
- test/core/kernel/test_hierarchical_send.rb
|
|
1199
|
-
- test/core/kernel/test_in.rb
|
|
1200
|
-
- test/core/kernel/test_instance_assign.rb
|
|
1201
|
-
- test/core/kernel/test_instance_class.rb
|
|
1202
|
-
- test/core/kernel/test_instance_extract.rb
|
|
1203
|
-
- test/core/kernel/test_instance_replace.rb
|
|
1204
|
-
- test/core/kernel/test_instance_send.rb
|
|
1205
|
-
- test/core/kernel/test_maybe.rb
|
|
1206
|
-
- test/core/kernel/test_meta_alias.rb
|
|
1207
|
-
- test/core/kernel/test_meta_class.rb
|
|
1208
|
-
- test/core/kernel/test_meta_def.rb
|
|
1209
|
-
- test/core/kernel/test_meta_eval.rb
|
|
1210
|
-
- test/core/kernel/test_method.rb
|
|
1211
|
-
- test/core/kernel/test_not.rb
|
|
1212
|
-
- test/core/kernel/test_not_nil.rb
|
|
1213
|
-
- test/core/kernel/test_object_class.rb
|
|
1214
|
-
- test/core/kernel/test_object_hexid.rb
|
|
1215
|
-
- test/core/kernel/test_object_send.rb
|
|
1216
|
-
- test/core/kernel/test_presence.rb
|
|
1217
|
-
- test/core/kernel/test_qua_class.rb
|
|
1218
|
-
- test/core/kernel/test_require_all.rb
|
|
1219
|
-
- test/core/kernel/test_respond.rb
|
|
1220
|
-
- test/core/kernel/test_returning.rb
|
|
1221
|
-
- test/core/kernel/test_silence.rb
|
|
1222
|
-
- test/core/kernel/test_singleton_class.rb
|
|
1223
|
-
- test/core/kernel/test_super_method.rb
|
|
1224
|
-
- test/core/kernel/test_tap.rb
|
|
1225
|
-
- test/core/kernel/test_temporarily.rb
|
|
1226
|
-
- test/core/kernel/test_true.rb
|
|
1227
|
-
- test/core/kernel/test_try.rb
|
|
1228
|
-
- test/core/kernel/test_val.rb
|
|
1229
|
-
- test/core/kernel/test_with.rb
|
|
1230
|
-
- test/core/kernel/test_writers.rb
|
|
1231
|
-
- test/core/matchdata/test_match.rb
|
|
1232
|
-
- test/core/matchdata/test_matchset.rb
|
|
1233
|
-
- test/core/method/test_composition.rb
|
|
1234
|
-
- test/core/module/test_abstract.rb
|
|
1235
|
-
- test/core/module/test_alias_accessor.rb
|
|
1236
|
-
- test/core/module/test_alias_method_chain.rb
|
|
1237
|
-
- test/core/module/test_alias_module_function.rb
|
|
1238
|
-
- test/core/module/test_all_instance_methods.rb
|
|
1239
|
-
- test/core/module/test_ancestor.rb
|
|
1240
|
-
- test/core/module/test_anonymous.rb
|
|
1241
|
-
- test/core/module/test_attr_setter.rb
|
|
1242
|
-
- test/core/module/test_basename.rb
|
|
1243
|
-
- test/core/module/test_can.rb
|
|
1244
|
-
- test/core/module/test_class.rb
|
|
1245
|
-
- test/core/module/test_class_def.rb
|
|
1246
|
-
- test/core/module/test_class_extend.rb
|
|
1247
|
-
- test/core/module/test_class_inheritor.rb
|
|
1248
|
-
- test/core/module/test_copy_inheritor.rb
|
|
1249
|
-
- test/core/module/test_enclosure.rb
|
|
1250
|
-
- test/core/module/test_instance_function.rb
|
|
1251
|
-
- test/core/module/test_instance_method.rb
|
|
1252
|
-
- test/core/module/test_instance_method_defined.rb
|
|
1253
|
-
- test/core/module/test_integrate.rb
|
|
1254
|
-
- test/core/module/test_is.rb
|
|
1255
|
-
- test/core/module/test_memoize.rb
|
|
1256
|
-
- test/core/module/test_method_clash.rb
|
|
1257
|
-
- test/core/module/test_method_space.rb
|
|
1258
|
-
- test/core/module/test_methodize.rb
|
|
1259
|
-
- test/core/module/test_modname.rb
|
|
1260
|
-
- test/core/module/test_module_def.rb
|
|
1261
|
-
- test/core/module/test_module_load.rb
|
|
1262
|
-
- test/core/module/test_nodef.rb
|
|
1263
|
-
- test/core/module/test_op.rb
|
|
1264
|
-
- test/core/module/test_pathize.rb
|
|
1265
|
-
- test/core/module/test_preextend.rb
|
|
1266
|
-
- test/core/module/test_redefine_method.rb
|
|
1267
|
-
- test/core/module/test_redirect_method.rb
|
|
1268
|
-
- test/core/module/test_remove.rb
|
|
1269
|
-
- test/core/module/test_rename_method.rb
|
|
1270
|
-
- test/core/module/test_revise.rb
|
|
1271
|
-
- test/core/module/test_set.rb
|
|
1272
|
-
- test/core/module/test_spacename.rb
|
|
1273
|
-
- test/core/module/test_to_obj.rb
|
|
1274
|
-
- test/core/module/test_wrap_method.rb
|
|
1275
|
-
- test/core/numeric/test_approx.rb
|
|
1276
|
-
- test/core/numeric/test_delimit.rb
|
|
1277
|
-
- test/core/numeric/test_distance.rb
|
|
1278
|
-
- test/core/numeric/test_length.rb
|
|
1279
|
-
- test/core/numeric/test_round_to.rb
|
|
1280
|
-
- test/core/numeric/test_spacing.rb
|
|
1281
|
-
- test/core/object/test_dup.rb
|
|
1282
|
-
- test/core/object/test_object_state.rb
|
|
1283
|
-
- test/core/object/test_try_dup.rb
|
|
1284
|
-
- test/core/proc/test_bind.rb
|
|
1285
|
-
- test/core/proc/test_bind_to.rb
|
|
1286
|
-
- test/core/proc/test_compose.rb
|
|
1287
|
-
- test/core/proc/test_partial.rb
|
|
1288
|
-
- test/core/proc/test_to_method.rb
|
|
1289
|
-
- test/core/proc/test_update.rb
|
|
1290
|
-
- test/core/range/test_combine.rb
|
|
1291
|
-
- test/core/range/test_nudge.rb
|
|
1292
|
-
- test/core/range/test_op_add.rb
|
|
1293
|
-
- test/core/range/test_op_sub.rb
|
|
1294
|
-
- test/core/range/test_overlap.rb
|
|
1295
|
-
- test/core/range/test_to_rng.rb
|
|
1296
|
-
- test/core/range/test_umbrella.rb
|
|
1297
|
-
- test/core/range/test_within.rb
|
|
1298
|
-
- test/core/regexp/test_arity.rb
|
|
1299
|
-
- test/core/regexp/test_multiline.rb
|
|
1300
|
-
- test/core/regexp/test_op_add.rb
|
|
1301
|
-
- test/core/regexp/test_op_or.rb
|
|
1302
|
-
- test/core/regexp/test_to_re.rb
|
|
1303
|
-
- test/core/string/test_acronym.rb
|
|
1304
|
-
- test/core/string/test_align.rb
|
|
1305
|
-
- test/core/string/test_ascii_only.rb
|
|
1306
|
-
- test/core/string/test_bracket.rb
|
|
1307
|
-
- test/core/string/test_camelcase.rb
|
|
1308
|
-
- test/core/string/test_capitalized.rb
|
|
1309
|
-
- test/core/string/test_characters.rb
|
|
1310
|
-
- test/core/string/test_cleanlines.rb
|
|
1311
|
-
- test/core/string/test_cleave.rb
|
|
1312
|
-
- test/core/string/test_cmp.rb
|
|
1313
|
-
- test/core/string/test_compress_lines.rb
|
|
1314
|
-
- test/core/string/test_crypt.rb
|
|
1315
|
-
- test/core/string/test_divide.rb
|
|
1316
|
-
- test/core/string/test_each_word.rb
|
|
1317
|
-
- test/core/string/test_edit_distance.rb
|
|
1318
|
-
- test/core/string/test_exclude.rb
|
|
1319
|
-
- test/core/string/test_expand_tabs.rb
|
|
1320
|
-
- test/core/string/test_file.rb
|
|
1321
|
-
- test/core/string/test_fold.rb
|
|
1322
|
-
- test/core/string/test_indent.rb
|
|
1323
|
-
- test/core/string/test_index_all.rb
|
|
1324
|
-
- test/core/string/test_interpolate.rb
|
|
1325
|
-
- test/core/string/test_lchomp.rb
|
|
1326
|
-
- test/core/string/test_line_wrap.rb
|
|
1327
|
-
- test/core/string/test_lowercase.rb
|
|
1328
|
-
- test/core/string/test_margin.rb
|
|
1329
|
-
- test/core/string/test_methodize.rb
|
|
1330
|
-
- test/core/string/test_modulize.rb
|
|
1331
|
-
- test/core/string/test_mscan.rb
|
|
1332
|
-
- test/core/string/test_natcmp.rb
|
|
1333
|
-
- test/core/string/test_nchar.rb
|
|
1334
|
-
- test/core/string/test_newlines.rb
|
|
1335
|
-
- test/core/string/test_number.rb
|
|
1336
|
-
- test/core/string/test_op_div.rb
|
|
1337
|
-
- test/core/string/test_op_sub.rb
|
|
1338
|
-
- test/core/string/test_pathize.rb
|
|
1339
|
-
- test/core/string/test_quote.rb
|
|
1340
|
-
- test/core/string/test_random.rb
|
|
1341
|
-
- test/core/string/test_range.rb
|
|
1342
|
-
- test/core/string/test_remove.rb
|
|
1343
|
-
- test/core/string/test_rewrite.rb
|
|
1344
|
-
- test/core/string/test_rotate.rb
|
|
1345
|
-
- test/core/string/test_shatter.rb
|
|
1346
|
-
- test/core/string/test_similarity.rb
|
|
1347
|
-
- test/core/string/test_snakecase.rb
|
|
1348
|
-
- test/core/string/test_splice.rb
|
|
1349
|
-
- test/core/string/test_squish.rb
|
|
1350
|
-
- test/core/string/test_store.rb
|
|
1351
|
-
- test/core/string/test_subtract.rb
|
|
1352
|
-
- test/core/string/test_titlecase.rb
|
|
1353
|
-
- test/core/string/test_to_re.rb
|
|
1354
|
-
- test/core/string/test_trim.rb
|
|
1355
|
-
- test/core/string/test_unbracket.rb
|
|
1356
|
-
- test/core/string/test_underscore.rb
|
|
1357
|
-
- test/core/string/test_unfold.rb
|
|
1358
|
-
- test/core/string/test_unindent.rb
|
|
1359
|
-
- test/core/string/test_unquote.rb
|
|
1360
|
-
- test/core/string/test_uppercase.rb
|
|
1361
|
-
- test/core/string/test_variablize.rb
|
|
1362
|
-
- test/core/string/test_word_wrap.rb
|
|
1363
|
-
- test/core/string/test_words.rb
|
|
1364
|
-
- test/core/string/test_xor.rb
|
|
1365
|
-
- test/core/struct/test_replace.rb
|
|
1366
|
-
- test/core/symbol/test_as_s.rb
|
|
1367
|
-
- test/core/symbol/test_bang.rb
|
|
1368
|
-
- test/core/symbol/test_chomp.rb
|
|
1369
|
-
- test/core/symbol/test_generate.rb
|
|
1370
|
-
- test/core/symbol/test_not.rb
|
|
1371
|
-
- test/core/symbol/test_op_div.rb
|
|
1372
|
-
- test/core/symbol/test_plain.rb
|
|
1373
|
-
- test/core/symbol/test_query.rb
|
|
1374
|
-
- test/core/symbol/test_setter.rb
|
|
1375
|
-
- test/core/symbol/test_succ.rb
|
|
1376
|
-
- test/core/symbol/test_thrown.rb
|
|
1377
|
-
- test/core/symbol/test_variablize.rb
|
|
1378
|
-
- test/core/time/test_ago.rb
|
|
1379
|
-
- test/core/time/test_change.rb
|
|
1380
|
-
- test/core/time/test_dst_adjustment.rb
|
|
1381
|
-
- test/core/time/test_elapse.rb
|
|
1382
|
-
- test/core/time/test_future.rb
|
|
1383
|
-
- test/core/time/test_hence.rb
|
|
1384
|
-
- test/core/time/test_in.rb
|
|
1385
|
-
- test/core/time/test_less.rb
|
|
1386
|
-
- test/core/time/test_past.rb
|
|
1387
|
-
- test/core/time/test_round_to.rb
|
|
1388
|
-
- test/core/time/test_set.rb
|
|
1389
|
-
- test/core/time/test_shift.rb
|
|
1390
|
-
- test/core/time/test_stamp.rb
|
|
1391
|
-
- test/core/time/test_to_time.rb
|
|
1392
|
-
- test/core/time/test_trunc.rb
|
|
1393
|
-
- test/core/unboundmethod/test_arguments.rb
|
|
1394
|
-
- test/standard/binding/test_block_exec.rb
|
|
1395
|
-
- test/standard/math/test_abs.rb
|
|
1396
|
-
- test/standard/math/test_acot.rb
|
|
1397
|
-
- test/standard/math/test_acoth.rb
|
|
1398
|
-
- test/standard/math/test_beta.rb
|
|
1399
|
-
- test/standard/math/test_ceil.rb
|
|
1400
|
-
- test/standard/math/test_cosec.rb
|
|
1401
|
-
- test/standard/math/test_cosech.rb
|
|
1402
|
-
- test/standard/math/test_cot.rb
|
|
1403
|
-
- test/standard/math/test_coth.rb
|
|
1404
|
-
- test/standard/math/test_distance.rb
|
|
1405
|
-
- test/standard/math/test_exp10.rb
|
|
1406
|
-
- test/standard/math/test_exp2.rb
|
|
1407
|
-
- test/standard/math/test_factorial.rb
|
|
1408
|
-
- test/standard/math/test_floor.rb
|
|
1409
|
-
- test/standard/math/test_gcd.rb
|
|
1410
|
-
- test/standard/math/test_lcm.rb
|
|
1411
|
-
- test/standard/math/test_median.rb
|
|
1412
|
-
- test/standard/math/test_percentile.rb
|
|
1413
|
-
- test/standard/math/test_pow.rb
|
|
1414
|
-
- test/standard/math/test_root.rb
|
|
1415
|
-
- test/standard/math/test_sec.rb
|
|
1416
|
-
- test/standard/math/test_sech.rb
|
|
1417
|
-
- test/standard/math/test_sign.rb
|
|
1418
|
-
- test/standard/math/test_sinc.rb
|
|
1419
|
-
- test/standard/math/test_srq.rb
|
|
1420
|
-
- test/standard/pathname/test_chdir.rb
|
|
1421
|
-
- test/standard/pathname/test_readline.rb
|
|
1422
|
-
- test/standard/test_argvector.rb
|
|
1423
|
-
- test/standard/test_cloneable.rb
|
|
1424
|
-
- test/standard/test_date.rb
|
|
1425
|
-
- test/standard/test_enumargs.rb
|
|
1426
|
-
- test/standard/test_equitable.rb
|
|
1427
|
-
- test/standard/test_instantiable.rb
|
|
1428
|
-
- test/standard/test_math.rb
|
|
1429
|
-
- test/standard/test_memoizable.rb
|
|
1430
|
-
- test/standard/test_multipliers.rb
|
|
1431
|
-
- test/standard/test_ostruct.rb
|
|
1432
|
-
- test/standard/test_random.rb
|
|
1433
|
-
- test/standard/test_shellwords.rb
|
|
1434
|
-
- test/standard/test_thread.rb
|
|
1435
|
-
- test/standard/test_timer.rb
|
|
1436
|
-
- test/standard/test_tuple.rb
|
|
1437
|
-
- test/standard/test_uri.rb
|
|
1438
|
-
homepage: http://rubyworks.github.com/facets
|
|
730
|
+
homepage: https://rubyworks.github.io/facets
|
|
1439
731
|
licenses:
|
|
1440
732
|
- BSD-2-Clause
|
|
1441
|
-
metadata:
|
|
1442
|
-
|
|
733
|
+
metadata:
|
|
734
|
+
source_code_uri: https://github.com/rubyworks/facets
|
|
735
|
+
changelog_uri: https://github.com/rubyworks/facets/blob/main/HISTORY.md
|
|
1443
736
|
rdoc_options: []
|
|
1444
737
|
require_paths:
|
|
1445
738
|
- lib/core
|
|
@@ -1448,450 +741,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
1448
741
|
requirements:
|
|
1449
742
|
- - ">="
|
|
1450
743
|
- !ruby/object:Gem::Version
|
|
1451
|
-
version: '
|
|
744
|
+
version: '3.1'
|
|
1452
745
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
1453
746
|
requirements:
|
|
1454
747
|
- - ">="
|
|
1455
748
|
- !ruby/object:Gem::Version
|
|
1456
749
|
version: '0'
|
|
1457
750
|
requirements: []
|
|
1458
|
-
|
|
1459
|
-
rubygems_version: 2.5.1
|
|
1460
|
-
signing_key:
|
|
751
|
+
rubygems_version: 3.6.9
|
|
1461
752
|
specification_version: 4
|
|
1462
|
-
summary: The
|
|
1463
|
-
test_files:
|
|
1464
|
-
- test/core/functor_tc.rb
|
|
1465
|
-
- test/core/binding/test_defined.rb
|
|
1466
|
-
- test/core/binding/test_op.rb
|
|
1467
|
-
- test/core/binding/test_self.rb
|
|
1468
|
-
- test/core/binding/test_caller.rb
|
|
1469
|
-
- test/core/enumerator_tc.rb
|
|
1470
|
-
- test/core/proc/test_compose.rb
|
|
1471
|
-
- test/core/proc/test_update.rb
|
|
1472
|
-
- test/core/proc/test_to_method.rb
|
|
1473
|
-
- test/core/proc/test_bind.rb
|
|
1474
|
-
- test/core/proc/test_partial.rb
|
|
1475
|
-
- test/core/proc/test_bind_to.rb
|
|
1476
|
-
- test/core/class/test_descendents.rb
|
|
1477
|
-
- test/core/class/test_subclasses.rb
|
|
1478
|
-
- test/core/class/test_preallocate.rb
|
|
1479
|
-
- test/core/class/test_to_proc.rb
|
|
1480
|
-
- test/core/symbol/test_variablize.rb
|
|
1481
|
-
- test/core/symbol/test_plain.rb
|
|
1482
|
-
- test/core/symbol/test_setter.rb
|
|
1483
|
-
- test/core/symbol/test_bang.rb
|
|
1484
|
-
- test/core/symbol/test_op_div.rb
|
|
1485
|
-
- test/core/symbol/test_chomp.rb
|
|
1486
|
-
- test/core/symbol/test_succ.rb
|
|
1487
|
-
- test/core/symbol/test_query.rb
|
|
1488
|
-
- test/core/symbol/test_thrown.rb
|
|
1489
|
-
- test/core/symbol/test_generate.rb
|
|
1490
|
-
- test/core/symbol/test_not.rb
|
|
1491
|
-
- test/core/symbol/test_as_s.rb
|
|
1492
|
-
- test/core/hash/test_slice.rb
|
|
1493
|
-
- test/core/hash/test_update_each.rb
|
|
1494
|
-
- test/core/hash/test_delete_unless.rb
|
|
1495
|
-
- test/core/hash/test_each_with_key.rb
|
|
1496
|
-
- test/core/hash/test_fetch_nested.rb
|
|
1497
|
-
- test/core/hash/test_delete_at.rb
|
|
1498
|
-
- test/core/hash/test_deep_merge.rb
|
|
1499
|
-
- test/core/hash/test_op_mul.rb
|
|
1500
|
-
- test/core/hash/test_inverse.rb
|
|
1501
|
-
- test/core/hash/test_autonew.rb
|
|
1502
|
-
- test/core/hash/test_op_push.rb
|
|
1503
|
-
- test/core/hash/test_reverse_merge.rb
|
|
1504
|
-
- test/core/hash/test_stringify_keys.rb
|
|
1505
|
-
- test/core/hash/test_keys.rb
|
|
1506
|
-
- test/core/hash/test_op_add.rb
|
|
1507
|
-
- test/core/hash/test_recursively.rb
|
|
1508
|
-
- test/core/hash/test_to_mod.rb
|
|
1509
|
-
- test/core/hash/test_dearray_values.rb
|
|
1510
|
-
- test/core/hash/test_update_values.rb
|
|
1511
|
-
- test/core/hash/test_to_proc.rb
|
|
1512
|
-
- test/core/hash/test_collate.rb
|
|
1513
|
-
- test/core/hash/test_diff.rb
|
|
1514
|
-
- test/core/hash/test_weave.rb
|
|
1515
|
-
- test/core/hash/test_replace_each.rb
|
|
1516
|
-
- test/core/hash/test_data.rb
|
|
1517
|
-
- test/core/hash/test_argumentize.rb
|
|
1518
|
-
- test/core/hash/test_traverse.rb
|
|
1519
|
-
- test/core/hash/test_deep_rekey.rb
|
|
1520
|
-
- test/core/hash/test_recurse.rb
|
|
1521
|
-
- test/core/hash/test_to_struct.rb
|
|
1522
|
-
- test/core/hash/test_update_keys.rb
|
|
1523
|
-
- test/core/hash/test_op_sub.rb
|
|
1524
|
-
- test/core/hash/test_expect.rb
|
|
1525
|
-
- test/core/hash/test_at.rb
|
|
1526
|
-
- test/core/hash/test_revalue.rb
|
|
1527
|
-
- test/core/hash/test_new_with.rb
|
|
1528
|
-
- test/core/hash/test_swap.rb
|
|
1529
|
-
- test/core/hash/test_insert.rb
|
|
1530
|
-
- test/core/hash/test_alias.rb
|
|
1531
|
-
- test/core/hash/test_graph.rb
|
|
1532
|
-
- test/core/hash/test_count.rb
|
|
1533
|
-
- test/core/hash/test_join.rb
|
|
1534
|
-
- test/core/hash/test_symbolize_keys.rb
|
|
1535
|
-
- test/core/hash/test_rekey.rb
|
|
1536
|
-
- test/core/hash/test_op_or.rb
|
|
1537
|
-
- test/core/hash/test_delete_values.rb
|
|
1538
|
-
- test/core/hash/test_zip.rb
|
|
1539
|
-
- test/core/hash/test_op_and.rb
|
|
1540
|
-
- test/core/indexable_tc.rb
|
|
1541
|
-
- test/core/object/test_try_dup.rb
|
|
1542
|
-
- test/core/object/test_object_state.rb
|
|
1543
|
-
- test/core/object/test_dup.rb
|
|
1544
|
-
- test/core/denumerable_tc.rb
|
|
1545
|
-
- test/core/string/test_snakecase.rb
|
|
1546
|
-
- test/core/string/test_methodize.rb
|
|
1547
|
-
- test/core/string/test_file.rb
|
|
1548
|
-
- test/core/string/test_line_wrap.rb
|
|
1549
|
-
- test/core/string/test_shatter.rb
|
|
1550
|
-
- test/core/string/test_newlines.rb
|
|
1551
|
-
- test/core/string/test_number.rb
|
|
1552
|
-
- test/core/string/test_each_word.rb
|
|
1553
|
-
- test/core/string/test_variablize.rb
|
|
1554
|
-
- test/core/string/test_trim.rb
|
|
1555
|
-
- test/core/string/test_nchar.rb
|
|
1556
|
-
- test/core/string/test_to_re.rb
|
|
1557
|
-
- test/core/string/test_splice.rb
|
|
1558
|
-
- test/core/string/test_exclude.rb
|
|
1559
|
-
- test/core/string/test_mscan.rb
|
|
1560
|
-
- test/core/string/test_divide.rb
|
|
1561
|
-
- test/core/string/test_cleanlines.rb
|
|
1562
|
-
- test/core/string/test_subtract.rb
|
|
1563
|
-
- test/core/string/test_similarity.rb
|
|
1564
|
-
- test/core/string/test_rewrite.rb
|
|
1565
|
-
- test/core/string/test_word_wrap.rb
|
|
1566
|
-
- test/core/string/test_modulize.rb
|
|
1567
|
-
- test/core/string/test_ascii_only.rb
|
|
1568
|
-
- test/core/string/test_capitalized.rb
|
|
1569
|
-
- test/core/string/test_characters.rb
|
|
1570
|
-
- test/core/string/test_cleave.rb
|
|
1571
|
-
- test/core/string/test_expand_tabs.rb
|
|
1572
|
-
- test/core/string/test_pathize.rb
|
|
1573
|
-
- test/core/string/test_unindent.rb
|
|
1574
|
-
- test/core/string/test_quote.rb
|
|
1575
|
-
- test/core/string/test_unquote.rb
|
|
1576
|
-
- test/core/string/test_align.rb
|
|
1577
|
-
- test/core/string/test_cmp.rb
|
|
1578
|
-
- test/core/string/test_camelcase.rb
|
|
1579
|
-
- test/core/string/test_acronym.rb
|
|
1580
|
-
- test/core/string/test_store.rb
|
|
1581
|
-
- test/core/string/test_op_div.rb
|
|
1582
|
-
- test/core/string/test_bracket.rb
|
|
1583
|
-
- test/core/string/test_fold.rb
|
|
1584
|
-
- test/core/string/test_crypt.rb
|
|
1585
|
-
- test/core/string/test_remove.rb
|
|
1586
|
-
- test/core/string/test_unbracket.rb
|
|
1587
|
-
- test/core/string/test_uppercase.rb
|
|
1588
|
-
- test/core/string/test_compress_lines.rb
|
|
1589
|
-
- test/core/string/test_index_all.rb
|
|
1590
|
-
- test/core/string/test_lchomp.rb
|
|
1591
|
-
- test/core/string/test_random.rb
|
|
1592
|
-
- test/core/string/test_words.rb
|
|
1593
|
-
- test/core/string/test_underscore.rb
|
|
1594
|
-
- test/core/string/test_range.rb
|
|
1595
|
-
- test/core/string/test_op_sub.rb
|
|
1596
|
-
- test/core/string/test_xor.rb
|
|
1597
|
-
- test/core/string/test_natcmp.rb
|
|
1598
|
-
- test/core/string/test_interpolate.rb
|
|
1599
|
-
- test/core/string/test_squish.rb
|
|
1600
|
-
- test/core/string/test_margin.rb
|
|
1601
|
-
- test/core/string/test_indent.rb
|
|
1602
|
-
- test/core/string/test_rotate.rb
|
|
1603
|
-
- test/core/string/test_unfold.rb
|
|
1604
|
-
- test/core/string/test_edit_distance.rb
|
|
1605
|
-
- test/core/string/test_titlecase.rb
|
|
1606
|
-
- test/core/string/test_lowercase.rb
|
|
1607
|
-
- test/core/filetest/test_root.rb
|
|
1608
|
-
- test/core/numeric/test_spacing.rb
|
|
1609
|
-
- test/core/numeric/test_distance.rb
|
|
1610
|
-
- test/core/numeric/test_delimit.rb
|
|
1611
|
-
- test/core/numeric/test_length.rb
|
|
1612
|
-
- test/core/numeric/test_round_to.rb
|
|
1613
|
-
- test/core/numeric/test_approx.rb
|
|
1614
|
-
- test/core/struct/test_replace.rb
|
|
1615
|
-
- test/core/array/test_standard_deviation.rb
|
|
1616
|
-
- test/core/array/test_pull.rb
|
|
1617
|
-
- test/core/array/test_step.rb
|
|
1618
|
-
- test/core/array/test_delete_unless.rb
|
|
1619
|
-
- test/core/array/test_occur.rb
|
|
1620
|
-
- test/core/array/test_average.rb
|
|
1621
|
-
- test/core/array/test_merge.rb
|
|
1622
|
-
- test/core/array/test_squeeze.rb
|
|
1623
|
-
- test/core/array/test_median.rb
|
|
1624
|
-
- test/core/array/test_collapse.rb
|
|
1625
|
-
- test/core/array/test_commonality.rb
|
|
1626
|
-
- test/core/array/test_reject_values.rb
|
|
1627
|
-
- test/core/array/test_op_pow.rb
|
|
1628
|
-
- test/core/array/test_extract_options.rb
|
|
1629
|
-
- test/core/array/test_intersection.rb
|
|
1630
|
-
- test/core/array/test_splice.rb
|
|
1631
|
-
- test/core/array/test_divide.rb
|
|
1632
|
-
- test/core/array/test_uniq_by.rb
|
|
1633
|
-
- test/core/array/test_arrange.rb
|
|
1634
|
-
- test/core/array/test_last.rb
|
|
1635
|
-
- test/core/array/test_before.rb
|
|
1636
|
-
- test/core/array/test_mode.rb
|
|
1637
|
-
- test/core/array/test_missing.rb
|
|
1638
|
-
- test/core/array/test_peek.rb
|
|
1639
|
-
- test/core/array/test_not_empty.rb
|
|
1640
|
-
- test/core/array/test_split.rb
|
|
1641
|
-
- test/core/array/test_duplicates.rb
|
|
1642
|
-
- test/core/array/test_poke.rb
|
|
1643
|
-
- test/core/array/test_store.rb
|
|
1644
|
-
- test/core/array/test_only.rb
|
|
1645
|
-
- test/core/array/test_first.rb
|
|
1646
|
-
- test/core/array/test_recursively.rb
|
|
1647
|
-
- test/core/array/test_each_overlap.rb
|
|
1648
|
-
- test/core/array/test_occurrence.rb
|
|
1649
|
-
- test/core/array/test_from.rb
|
|
1650
|
-
- test/core/array/test_entropy.rb
|
|
1651
|
-
- test/core/array/test_traverse.rb
|
|
1652
|
-
- test/core/array/test_each_value.rb
|
|
1653
|
-
- test/core/array/test_recurse.rb
|
|
1654
|
-
- test/core/array/test_variance.rb
|
|
1655
|
-
- test/core/array/test_delete.rb
|
|
1656
|
-
- test/core/array/test_to_h.rb
|
|
1657
|
-
- test/core/array/test_contains.rb
|
|
1658
|
-
- test/core/array/test_pad.rb
|
|
1659
|
-
- test/core/array/test_probability.rb
|
|
1660
|
-
- test/core/array/test_unique_permutation.rb
|
|
1661
|
-
- test/core/array/test_each_pair.rb
|
|
1662
|
-
- test/core/array/test_nonuniq.rb
|
|
1663
|
-
- test/core/array/test_delete_values.rb
|
|
1664
|
-
- test/core/array/test_conjoin.rb
|
|
1665
|
-
- test/core/array/test_zip.rb
|
|
1666
|
-
- test/core/integer/test_multiple.rb
|
|
1667
|
-
- test/core/integer/test_of.rb
|
|
1668
|
-
- test/core/integer/test_factorial.rb
|
|
1669
|
-
- test/core/integer/test_ordinal.rb
|
|
1670
|
-
- test/core/integer/test_bitmask.rb
|
|
1671
|
-
- test/core/time/test_dst_adjustment.rb
|
|
1672
|
-
- test/core/time/test_stamp.rb
|
|
1673
|
-
- test/core/time/test_hence.rb
|
|
1674
|
-
- test/core/time/test_trunc.rb
|
|
1675
|
-
- test/core/time/test_past.rb
|
|
1676
|
-
- test/core/time/test_to_time.rb
|
|
1677
|
-
- test/core/time/test_set.rb
|
|
1678
|
-
- test/core/time/test_shift.rb
|
|
1679
|
-
- test/core/time/test_change.rb
|
|
1680
|
-
- test/core/time/test_ago.rb
|
|
1681
|
-
- test/core/time/test_round_to.rb
|
|
1682
|
-
- test/core/time/test_less.rb
|
|
1683
|
-
- test/core/time/test_in.rb
|
|
1684
|
-
- test/core/time/test_future.rb
|
|
1685
|
-
- test/core/time/test_elapse.rb
|
|
1686
|
-
- test/core/range/test_combine.rb
|
|
1687
|
-
- test/core/range/test_op_add.rb
|
|
1688
|
-
- test/core/range/test_overlap.rb
|
|
1689
|
-
- test/core/range/test_umbrella.rb
|
|
1690
|
-
- test/core/range/test_op_sub.rb
|
|
1691
|
-
- test/core/range/test_to_rng.rb
|
|
1692
|
-
- test/core/range/test_within.rb
|
|
1693
|
-
- test/core/range/test_nudge.rb
|
|
1694
|
-
- test/core/enumerator/test_new.rb
|
|
1695
|
-
- test/core/enumerator/lazy/test_squeeze.rb
|
|
1696
|
-
- test/core/enumerator/test_fx.rb
|
|
1697
|
-
- test/core/module/test_integrate.rb
|
|
1698
|
-
- test/core/module/test_revise.rb
|
|
1699
|
-
- test/core/module/test_copy_inheritor.rb
|
|
1700
|
-
- test/core/module/test_methodize.rb
|
|
1701
|
-
- test/core/module/test_redefine_method.rb
|
|
1702
|
-
- test/core/module/test_class_inheritor.rb
|
|
1703
|
-
- test/core/module/test_preextend.rb
|
|
1704
|
-
- test/core/module/test_nodef.rb
|
|
1705
|
-
- test/core/module/test_enclosure.rb
|
|
1706
|
-
- test/core/module/test_instance_method.rb
|
|
1707
|
-
- test/core/module/test_memoize.rb
|
|
1708
|
-
- test/core/module/test_spacename.rb
|
|
1709
|
-
- test/core/module/test_instance_method_defined.rb
|
|
1710
|
-
- test/core/module/test_modname.rb
|
|
1711
|
-
- test/core/module/test_is.rb
|
|
1712
|
-
- test/core/module/test_rename_method.rb
|
|
1713
|
-
- test/core/module/test_op.rb
|
|
1714
|
-
- test/core/module/test_ancestor.rb
|
|
1715
|
-
- test/core/module/test_to_obj.rb
|
|
1716
|
-
- test/core/module/test_module_def.rb
|
|
1717
|
-
- test/core/module/test_alias_module_function.rb
|
|
1718
|
-
- test/core/module/test_redirect_method.rb
|
|
1719
|
-
- test/core/module/test_pathize.rb
|
|
1720
|
-
- test/core/module/test_alias_method_chain.rb
|
|
1721
|
-
- test/core/module/test_class_extend.rb
|
|
1722
|
-
- test/core/module/test_anonymous.rb
|
|
1723
|
-
- test/core/module/test_set.rb
|
|
1724
|
-
- test/core/module/test_method_space.rb
|
|
1725
|
-
- test/core/module/test_all_instance_methods.rb
|
|
1726
|
-
- test/core/module/test_basename.rb
|
|
1727
|
-
- test/core/module/test_abstract.rb
|
|
1728
|
-
- test/core/module/test_remove.rb
|
|
1729
|
-
- test/core/module/test_class_def.rb
|
|
1730
|
-
- test/core/module/test_module_load.rb
|
|
1731
|
-
- test/core/module/test_instance_function.rb
|
|
1732
|
-
- test/core/module/test_attr_setter.rb
|
|
1733
|
-
- test/core/module/test_class.rb
|
|
1734
|
-
- test/core/module/test_wrap_method.rb
|
|
1735
|
-
- test/core/module/test_alias_accessor.rb
|
|
1736
|
-
- test/core/module/test_method_clash.rb
|
|
1737
|
-
- test/core/module/test_can.rb
|
|
1738
|
-
- test/core/enumerable/test_key_by.rb
|
|
1739
|
-
- test/core/enumerable/test_every.rb
|
|
1740
|
-
- test/core/enumerable/test_expand.rb
|
|
1741
|
-
- test/core/enumerable/test_frequency.rb
|
|
1742
|
-
- test/core/enumerable/test_map_with_index.rb
|
|
1743
|
-
- test/core/enumerable/test_occur.rb
|
|
1744
|
-
- test/core/enumerable/test_squeeze.rb
|
|
1745
|
-
- test/core/enumerable/test_find_yield.rb
|
|
1746
|
-
- test/core/enumerable/test_hashify.rb
|
|
1747
|
-
- test/core/enumerable/test_accumulate.rb
|
|
1748
|
-
- test/core/enumerable/test_each_by.rb
|
|
1749
|
-
- test/core/enumerable/test_exclude.rb
|
|
1750
|
-
- test/core/enumerable/test_uniq_by.rb
|
|
1751
|
-
- test/core/enumerable/test_compact_map.rb
|
|
1752
|
-
- test/core/enumerable/test_mash.rb
|
|
1753
|
-
- test/core/enumerable/test_per.rb
|
|
1754
|
-
- test/core/enumerable/test_filter.rb
|
|
1755
|
-
- test/core/enumerable/test_defer.rb
|
|
1756
|
-
- test/core/enumerable/test_modulate.rb
|
|
1757
|
-
- test/core/enumerable/test_only.rb
|
|
1758
|
-
- test/core/enumerable/test_recursively.rb
|
|
1759
|
-
- test/core/enumerable/test_map_by.rb
|
|
1760
|
-
- test/core/enumerable/test_cluster.rb
|
|
1761
|
-
- test/core/enumerable/test_ewise.rb
|
|
1762
|
-
- test/core/enumerable/test_sum.rb
|
|
1763
|
-
- test/core/enumerable/test_visit.rb
|
|
1764
|
-
- test/core/enumerable/test_map_send.rb
|
|
1765
|
-
- test/core/enumerable/test_purge.rb
|
|
1766
|
-
- test/core/enumerable/test_graph.rb
|
|
1767
|
-
- test/core/matchdata/test_matchset.rb
|
|
1768
|
-
- test/core/matchdata/test_match.rb
|
|
1769
|
-
- test/core/method/test_composition.rb
|
|
1770
|
-
- test/core/kernel/test_respond.rb
|
|
1771
|
-
- test/core/kernel/test_instance_class.rb
|
|
1772
|
-
- test/core/kernel/test_constant.rb
|
|
1773
|
-
- test/core/kernel/test_deep_copy.rb
|
|
1774
|
-
- test/core/kernel/test_instance_send.rb
|
|
1775
|
-
- test/core/kernel/test_hierarchical_send.rb
|
|
1776
|
-
- test/core/kernel/test_instance_extract.rb
|
|
1777
|
-
- test/core/kernel/test_attr_singleton.rb
|
|
1778
|
-
- test/core/kernel/test_meta_eval.rb
|
|
1779
|
-
- test/core/kernel/test_try.rb
|
|
1780
|
-
- test/core/kernel/test_qua_class.rb
|
|
1781
|
-
- test/core/kernel/test_assign_from.rb
|
|
1782
|
-
- test/core/kernel/test_d.rb
|
|
1783
|
-
- test/core/kernel/test_not_nil.rb
|
|
1784
|
-
- test/core/kernel/test_silence.rb
|
|
1785
|
-
- test/core/kernel/test_require_all.rb
|
|
1786
|
-
- test/core/kernel/test_complete.rb
|
|
1787
|
-
- test/core/kernel/test_ask.rb
|
|
1788
|
-
- test/core/kernel/test_callstack.rb
|
|
1789
|
-
- test/core/kernel/test_meta_class.rb
|
|
1790
|
-
- test/core/kernel/test_super_method.rb
|
|
1791
|
-
- test/core/kernel/test_disable_warnings.rb
|
|
1792
|
-
- test/core/kernel/test_assign.rb
|
|
1793
|
-
- test/core/kernel/test_instance_replace.rb
|
|
1794
|
-
- test/core/kernel/test_get.rb
|
|
1795
|
-
- test/core/kernel/test_true.rb
|
|
1796
|
-
- test/core/kernel/test_deep_clone.rb
|
|
1797
|
-
- test/core/kernel/test_method.rb
|
|
1798
|
-
- test/core/kernel/test_meta_alias.rb
|
|
1799
|
-
- test/core/kernel/test_blank.rb
|
|
1800
|
-
- test/core/kernel/test_singleton_class.rb
|
|
1801
|
-
- test/core/kernel/test_val.rb
|
|
1802
|
-
- test/core/kernel/test_instance_assign.rb
|
|
1803
|
-
- test/core/kernel/test_writers.rb
|
|
1804
|
-
- test/core/kernel/test_here.rb
|
|
1805
|
-
- test/core/kernel/test_temporarily.rb
|
|
1806
|
-
- test/core/kernel/test_extension.rb
|
|
1807
|
-
- test/core/kernel/test_object_hexid.rb
|
|
1808
|
-
- test/core/kernel/test_maybe.rb
|
|
1809
|
-
- test/core/kernel/test_returning.rb
|
|
1810
|
-
- test/core/kernel/test_object_class.rb
|
|
1811
|
-
- test/core/kernel/test_meta_def.rb
|
|
1812
|
-
- test/core/kernel/test_presence.rb
|
|
1813
|
-
- test/core/kernel/test_class.rb
|
|
1814
|
-
- test/core/kernel/test_tap.rb
|
|
1815
|
-
- test/core/kernel/test_not.rb
|
|
1816
|
-
- test/core/kernel/test_as.rb
|
|
1817
|
-
- test/core/kernel/test_with.rb
|
|
1818
|
-
- test/core/kernel/test_in.rb
|
|
1819
|
-
- test/core/kernel/test_ergo.rb
|
|
1820
|
-
- test/core/kernel/test_object_send.rb
|
|
1821
|
-
- test/core/kernel/test_dir.rb
|
|
1822
|
-
- test/core/regexp/test_arity.rb
|
|
1823
|
-
- test/core/regexp/test_to_re.rb
|
|
1824
|
-
- test/core/regexp/test_multiline.rb
|
|
1825
|
-
- test/core/regexp/test_op_add.rb
|
|
1826
|
-
- test/core/regexp/test_op_or.rb
|
|
1827
|
-
- test/core/unboundmethod/test_arguments.rb
|
|
1828
|
-
- test/core/dir/test_each_child.rb
|
|
1829
|
-
- test/core/dir/test_parent.rb
|
|
1830
|
-
- test/core/dir/test_descend.rb
|
|
1831
|
-
- test/core/dir/test_ascend.rb
|
|
1832
|
-
- test/core/dir/test_multiglob.rb
|
|
1833
|
-
- test/core/dir/test_recurse.rb
|
|
1834
|
-
- test/core/comparable/test_clip.rb
|
|
1835
|
-
- test/core/comparable/test_cap.rb
|
|
1836
|
-
- test/core/comparable/test_bound.rb
|
|
1837
|
-
- test/core/comparable/test_op_get.rb
|
|
1838
|
-
- test/core/comparable/test_cmp.rb
|
|
1839
|
-
- test/core/file/test_read_list.rb
|
|
1840
|
-
- test/core/file/test_split_all.rb
|
|
1841
|
-
- test/core/file/test_rootname.rb
|
|
1842
|
-
- test/core/file/test_rewrite.rb
|
|
1843
|
-
- test/core/file/test_writelines.rb
|
|
1844
|
-
- test/core/file/test_sanitize.rb
|
|
1845
|
-
- test/core/file/test_null.rb
|
|
1846
|
-
- test/core/file/test_write.rb
|
|
1847
|
-
- test/core/file/test_read_binary.rb
|
|
1848
|
-
- test/core/file/test_append.rb
|
|
1849
|
-
- test/core/file/test_create.rb
|
|
1850
|
-
- test/core/file/test_ext.rb
|
|
1851
|
-
- test/core/exception/test_suppress.rb
|
|
1852
|
-
- test/core/exception/test_detail.rb
|
|
1853
|
-
- test/core/exception/test_raised.rb
|
|
1854
|
-
- test/standard/test_memoizable.rb
|
|
1855
|
-
- test/standard/test_uri.rb
|
|
1856
|
-
- test/standard/test_tuple.rb
|
|
1857
|
-
- test/standard/binding/test_block_exec.rb
|
|
1858
|
-
- test/standard/test_cloneable.rb
|
|
1859
|
-
- test/standard/test_date.rb
|
|
1860
|
-
- test/standard/test_thread.rb
|
|
1861
|
-
- test/standard/pathname/test_readline.rb
|
|
1862
|
-
- test/standard/pathname/test_chdir.rb
|
|
1863
|
-
- test/standard/test_argvector.rb
|
|
1864
|
-
- test/standard/test_equitable.rb
|
|
1865
|
-
- test/standard/test_multipliers.rb
|
|
1866
|
-
- test/standard/test_timer.rb
|
|
1867
|
-
- test/standard/test_math.rb
|
|
1868
|
-
- test/standard/test_shellwords.rb
|
|
1869
|
-
- test/standard/test_instantiable.rb
|
|
1870
|
-
- test/standard/test_random.rb
|
|
1871
|
-
- test/standard/test_enumargs.rb
|
|
1872
|
-
- test/standard/test_ostruct.rb
|
|
1873
|
-
- test/standard/math/test_sign.rb
|
|
1874
|
-
- test/standard/math/test_beta.rb
|
|
1875
|
-
- test/standard/math/test_median.rb
|
|
1876
|
-
- test/standard/math/test_sinc.rb
|
|
1877
|
-
- test/standard/math/test_ceil.rb
|
|
1878
|
-
- test/standard/math/test_acot.rb
|
|
1879
|
-
- test/standard/math/test_cot.rb
|
|
1880
|
-
- test/standard/math/test_factorial.rb
|
|
1881
|
-
- test/standard/math/test_gcd.rb
|
|
1882
|
-
- test/standard/math/test_root.rb
|
|
1883
|
-
- test/standard/math/test_sech.rb
|
|
1884
|
-
- test/standard/math/test_distance.rb
|
|
1885
|
-
- test/standard/math/test_percentile.rb
|
|
1886
|
-
- test/standard/math/test_coth.rb
|
|
1887
|
-
- test/standard/math/test_lcm.rb
|
|
1888
|
-
- test/standard/math/test_pow.rb
|
|
1889
|
-
- test/standard/math/test_acoth.rb
|
|
1890
|
-
- test/standard/math/test_cosec.rb
|
|
1891
|
-
- test/standard/math/test_cosech.rb
|
|
1892
|
-
- test/standard/math/test_exp2.rb
|
|
1893
|
-
- test/standard/math/test_floor.rb
|
|
1894
|
-
- test/standard/math/test_sec.rb
|
|
1895
|
-
- test/standard/math/test_abs.rb
|
|
1896
|
-
- test/standard/math/test_srq.rb
|
|
1897
|
-
- test/standard/math/test_exp10.rb
|
|
753
|
+
summary: The premier collection of extension methods for Ruby.
|
|
754
|
+
test_files: []
|