facets 3.0.0 → 3.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.index +11 -7
- data/CONTRIBUTING.md +112 -0
- data/HISTORY.md +38 -0
- data/{README.rdoc → README.md} +59 -59
- data/demo/core/array/after.md +13 -0
- data/demo/core/array/arrange.md +17 -0
- data/demo/core/array/before.md +14 -0
- data/demo/core/array/collapse.md +15 -0
- data/demo/core/array/collisions.md +30 -0
- data/demo/core/array/commonality.md +31 -0
- data/demo/core/array/conjoin.md +47 -0
- data/demo/core/array/contains.md +9 -0
- data/demo/core/array/delete_unless.md +13 -0
- data/demo/core/array/delete_values.md +10 -0
- data/demo/core/array/delete_values_at.md +15 -0
- data/demo/core/array/divide.md +14 -0
- data/demo/core/array/duplicates.md +14 -0
- data/demo/core/array/each_overlap.md +12 -0
- data/demo/core/array/each_pair.md +13 -0
- data/demo/core/array/each_value.md +12 -0
- data/demo/core/array/entropy.md +13 -0
- data/demo/core/array/extract_options.md +13 -0
- data/demo/core/array/first.md +11 -0
- data/demo/core/array/from.md +11 -0
- data/demo/core/array/ideal_entropy.md +11 -0
- data/demo/core/array/intersection.md +11 -0
- data/demo/core/array/last.md +11 -0
- data/demo/core/array/median.md +23 -0
- data/demo/core/array/merge.md +15 -0
- data/demo/core/array/missing.md +10 -0
- data/demo/core/array/mode.md +9 -0
- data/demo/core/array/nonuniq.md +16 -0
- data/demo/core/array/not_empty.md +8 -0
- data/demo/core/array/occur.md +18 -0
- data/demo/core/array/occurrence.md +13 -0
- data/demo/core/array/only.md +9 -0
- data/demo/core/array/op_pow.md +10 -0
- data/demo/core/array/pad.md +28 -0
- data/demo/core/array/peek.md +10 -0
- data/demo/core/array/poke.md +15 -0
- data/demo/core/array/probability +8 -0
- data/demo/core/array/pull.md +10 -0
- data/demo/core/array/recurse.md +10 -0
- data/demo/core/array/recursively.md +20 -0
- data/demo/core/array/reject_values.md +10 -0
- data/demo/core/array/splice.md +14 -0
- data/demo/core/array/split.md +13 -0
- data/demo/core/array/squeeze.md +14 -0
- data/demo/core/array/step.md +16 -0
- data/demo/core/array/store.md +9 -0
- data/demo/core/array/thru.md +12 -0
- data/demo/core/array/to_h.md +11 -0
- data/demo/core/array/traverse.md +20 -0
- data/demo/core/array/uniq_by.md +16 -0
- data/demo/core/array/unique_permutation.md +14 -0
- data/demo/core/array/zip.md +8 -0
- data/demo/core/binding/caller.md +57 -0
- data/demo/core/binding/defined.md +10 -0
- data/demo/core/binding/opvars.md +16 -0
- data/demo/core/binding/self.md +6 -0
- data/demo/core/class/descendants.md +13 -0
- data/demo/core/class/to_proc.md +11 -0
- data/demo/core/comparable/at_least.md +11 -0
- data/demo/core/comparable/at_most.md +11 -0
- data/demo/core/comparable/bound.md +13 -0
- data/demo/core/comparable/cap.md +11 -0
- data/demo/core/comparable/clip.md +29 -0
- data/demo/core/comparable/cmp.md +18 -0
- data/demo/core/comparable/op_get.md +32 -0
- data/demo/core/dir/ascend.md +24 -0
- data/demo/core/dir/descend.md +16 -0
- data/demo/core/dir/multiglob.md +41 -0
- data/demo/core/dir/parent.md +6 -0
- data/demo/core/dir/recurse.md +41 -0
- data/demo/core/exception/detail.md +19 -0
- data/demo/core/{facets.rdoc → facets.md} +1 -1
- data/demo/core/filetest/root.md +13 -0
- data/demo/core/hash/recursively.md +21 -0
- data/demo/core/indexable.md +95 -0
- data/demo/core/integer/bitmask.md +46 -0
- data/demo/core/integer/{factorial.rdoc → factorial.md} +1 -1
- data/demo/core/integer/{length.rdoc → length.md} +1 -1
- data/demo/core/integer/{multiple.rdoc → multiple.md} +3 -1
- data/demo/core/integer/of.md +11 -0
- data/demo/core/integer/{ordinal.rdoc → ordinal.md} +3 -1
- data/demo/core/integer/{of.rdoc → times_collect.md} +2 -7
- data/demo/core/matchdata/match.md +7 -0
- data/demo/core/matchdata/matchset.md +7 -0
- data/demo/core/matchdata/matchtree.md +10 -0
- data/demo/core/module/cattr.md +43 -0
- data/demo/core/module/class_extend.md +64 -0
- data/demo/core/module/{class_inheritor.rdoc → class_inheritor.md} +2 -2
- data/demo/core/module/{copy_inheritor.rdoc → copy_inheritor.md} +4 -4
- data/demo/core/module/include_as.md +31 -0
- data/demo/core/module/method_space.md +24 -0
- data/demo/core/string/acronym.md +9 -0
- data/demo/core/string/{align.rdoc → align.md} +10 -10
- data/demo/core/string/ascii_only.md +37 -0
- data/demo/core/string/{bracket.rdoc → bracket.md} +10 -10
- data/demo/core/string/camelcase.md +47 -0
- data/demo/core/string/{capitalized.rdoc → capitalized.md} +9 -9
- data/demo/core/string/characters.md +11 -0
- data/demo/core/string/{cleanlines.rdoc → cleanlines.md} +3 -3
- data/demo/core/string/cleave.md +49 -0
- data/demo/core/string/compress_lines.md +22 -0
- data/demo/core/string/crypt.md +15 -0
- data/demo/core/string/divide.md +9 -0
- data/demo/core/string/each_word.md +11 -0
- data/demo/core/string/edit_distance.md +15 -0
- data/demo/core/string/exclude.md +15 -0
- data/demo/core/string/expand_tabs.md +69 -0
- data/demo/core/string/fold.md +14 -0
- data/demo/core/string/indent.md +65 -0
- data/demo/core/string/index_all.md +14 -0
- data/demo/core/string/interpolate.md +8 -0
- data/demo/core/string/lchomp.md +14 -0
- data/demo/core/string/line_wrap.md +7 -0
- data/demo/core/string/lowercase.md +12 -0
- data/demo/core/string/methodize.md +22 -0
- data/demo/core/string/modulize.md +22 -0
- data/demo/core/string/mscan.md +10 -0
- data/demo/core/string/natcmp.md +10 -0
- data/demo/core/string/nchar.md +9 -0
- data/demo/core/string/{newlines.rdoc → newlines.md} +3 -3
- data/demo/core/string/number.md +27 -0
- data/demo/core/string/op_div.md +10 -0
- data/demo/core/string/op_sub.md +7 -0
- data/demo/core/string/pathize.md +22 -0
- data/demo/core/string/quote.md +20 -0
- data/demo/core/string/random.md +25 -0
- data/demo/core/string/range.md +19 -0
- data/demo/core/string/remove.md +33 -0
- data/demo/core/string/rewrite.md +9 -0
- data/demo/core/string/shatter.md +9 -0
- data/demo/core/string/similarity.md +12 -0
- data/demo/core/string/snakecase.md +14 -0
- data/demo/core/string/splice.md +28 -0
- data/demo/core/string/squish.md +27 -0
- data/demo/core/string/store.md +10 -0
- data/demo/core/string/subtract.md +8 -0
- data/demo/core/string/titlecase.md +8 -0
- data/demo/core/string/to_re.md +22 -0
- data/demo/core/string/{margin.rdoc → trim.md} +14 -14
- data/demo/core/string/unbracket.md +24 -0
- data/demo/core/string/underscore.md +17 -0
- data/demo/core/string/unfold.md +9 -0
- data/demo/core/string/unindent.md +65 -0
- data/demo/core/string/unquote.md +6 -0
- data/demo/core/string/uppercase.md +15 -0
- data/demo/core/string/variablize.md +7 -0
- data/demo/core/string/word_wrap.md +54 -0
- data/demo/core/string/words.md +13 -0
- data/demo/core/string/xor.md +8 -0
- data/lib/core/facets.yml +11 -7
- data/lib/core/facets/array.rb +1 -0
- data/lib/core/facets/array/average.rb +16 -0
- data/lib/core/facets/array/collapse.rb +4 -0
- data/lib/core/facets/array/delete_values_at.rb +1 -0
- data/lib/core/facets/array/divide.rb +7 -0
- data/lib/core/facets/array/duplicates.rb +2 -0
- data/lib/core/facets/array/each_pair.rb +1 -4
- data/lib/core/facets/array/first.rb +1 -0
- data/lib/core/facets/array/from.rb +11 -16
- data/lib/core/facets/array/intersection.rb +1 -1
- data/lib/core/facets/array/last.rb +1 -0
- data/lib/core/facets/array/mode.rb +2 -2
- data/lib/core/facets/array/occurrence.rb +4 -3
- data/lib/core/facets/array/op_pow.rb +0 -2
- data/lib/core/facets/array/probability.rb +1 -1
- data/lib/core/facets/array/recursively.rb +2 -2
- data/lib/core/facets/array/splice.rb +1 -1
- data/lib/core/facets/array/standard_deviation.rb +23 -0
- data/lib/core/facets/array/to_h.rb +0 -3
- data/lib/core/facets/array/uniq_by.rb +4 -0
- data/lib/core/facets/array/variance.rb +20 -0
- data/lib/core/facets/binding.rb +0 -1
- data/lib/core/facets/enumerable/cluster.rb +6 -4
- data/lib/core/facets/enumerable/hashify.rb +27 -31
- data/lib/core/facets/enumerable/sum.rb +12 -2
- data/lib/core/facets/file/atomic_open.rb +1 -1
- data/lib/core/facets/hash/except.rb +13 -1
- data/lib/core/facets/indexable.rb +1 -1
- data/lib/core/facets/kernel/ergo.rb +3 -3
- data/lib/core/facets/kernel/like.rb +1 -1
- data/lib/core/facets/matchdata/matchtree.rb +2 -0
- data/lib/core/facets/numeric/delimit.rb +20 -0
- data/lib/core/facets/range/nudge.rb +29 -0
- data/lib/core/facets/string.rb +0 -2
- data/lib/core/facets/string/indent.rb +0 -8
- data/lib/core/facets/string/margin.rb +0 -4
- data/lib/core/facets/string/random.rb +13 -3
- data/lib/core/facets/string/similarity.rb +7 -6
- data/lib/standard/facets/enumargs.rb +5 -0
- data/lib/standard/facets/math/percentile.rb +1 -1
- data/lib/standard/facets/net/http.rb +33 -14
- data/lib/standard/facets/timer.rb +3 -3
- data/test/core/array/test_average.rb +16 -0
- data/test/core/array/test_before.rb +21 -0
- data/test/core/array/test_collapse.rb +10 -1
- data/test/core/array/test_delete_unless.rb +17 -0
- data/test/core/array/test_delete_values.rb +31 -0
- data/test/core/array/test_divide.rb +10 -0
- data/test/core/array/test_each_pair.rb +16 -0
- data/test/core/array/test_each_value.rb +16 -0
- data/test/core/array/test_from.rb +42 -0
- data/test/core/array/test_op_pow.rb +13 -0
- data/test/core/array/test_standard_deviation.rb +18 -0
- data/test/core/array/test_to_h.rb +14 -0
- data/test/core/array/test_uniq_by.rb +7 -0
- data/test/core/array/test_variance.rb +17 -0
- data/test/core/array/test_zip.rb +13 -0
- data/test/core/dir/test_each_child.rb +1 -1
- data/test/core/dir/test_multiglob.rb +1 -1
- data/test/core/enumerable/test_cluster.rb +36 -0
- data/test/core/enumerable/test_hashify.rb +113 -0
- data/test/core/hash/test_expect.rb +11 -1
- data/test/core/kernel/test_ergo.rb +7 -5
- data/test/core/{object/test_replace.rb → kernel/test_instance_replace.rb} +6 -28
- data/test/core/numeric/test_delimit.rb +68 -0
- data/test/core/numeric/{test_round.rb → test_round_to.rb} +27 -27
- data/test/core/range/test_nudge.rb +32 -0
- data/test/core/range/{test_to_r.rb → test_to_rng.rb} +3 -3
- data/test/core/string/test_acronym.rb +14 -0
- data/test/core/string/test_ascii_only.rb +21 -0
- data/test/core/string/test_compress_lines.rb +9 -0
- data/test/core/string/test_crypt.rb +17 -0
- data/test/core/string/test_index_all.rb +4 -0
- data/test/core/string/test_random.rb +25 -0
- data/test/core/string/test_remove.rb +14 -0
- data/test/core/string/test_similarity.rb +9 -1
- data/test/core/struct/test_replace.rb +18 -0
- data/test/standard/test_enumargs.rb +26 -10
- data/test/standard/test_timer.rb +1 -1
- metadata +634 -588
- data/CONTRIBUTE.md +0 -78
- data/demo/core/array/combination.rdoc +0 -19
- data/demo/core/array/delete.rdoc +0 -23
- data/demo/core/array/index.rdoc +0 -14
- data/demo/core/array/merge.rdoc +0 -15
- data/demo/core/array/only.rdoc +0 -9
- data/demo/core/array/pad.rdoc +0 -28
- data/demo/core/array/permutation.rdoc +0 -10
- data/demo/core/array/product.rdoc +0 -26
- data/demo/core/array/recursively.rdoc +0 -16
- data/demo/core/array/rotate.rdoc +0 -30
- data/demo/core/array/select.rdoc +0 -8
- data/demo/core/array/uniq_by.rdoc +0 -9
- data/demo/core/binding/caller.rdoc +0 -57
- data/demo/core/binding/defined.rdoc +0 -10
- data/demo/core/binding/eval.rdoc +0 -8
- data/demo/core/binding/local_variables.rdoc +0 -26
- data/demo/core/binding/opvars.rdoc +0 -16
- data/demo/core/binding/self.rdoc +0 -6
- data/demo/core/class/descendants.rdoc +0 -10
- data/demo/core/class/to_proc.rdoc +0 -8
- data/demo/core/comparable/cap.rdoc +0 -20
- data/demo/core/comparable/clip.rdoc +0 -37
- data/demo/core/comparable/cmp.rdoc +0 -18
- data/demo/core/comparable/op_get.rdoc +0 -29
- data/demo/core/dir/ascend.rdoc +0 -24
- data/demo/core/dir/descend.rdoc +0 -14
- data/demo/core/dir/multiglob.rdoc +0 -41
- data/demo/core/dir/parent.rdoc +0 -6
- data/demo/core/dir/recurse.rdoc +0 -41
- data/demo/core/exception/detail.rdoc +0 -12
- data/demo/core/filetest/root.rdoc +0 -6
- data/demo/core/hash/recursively.rdoc +0 -21
- data/demo/core/indexable.rdoc +0 -95
- data/demo/core/integer/bitmask.rdoc +0 -46
- data/demo/core/integer/even.rdoc +0 -12
- data/demo/core/integer/odd.rdoc +0 -12
- data/demo/core/matchdata/match.rdoc +0 -7
- data/demo/core/matchdata/matchset.rdoc +0 -15
- data/demo/core/module/cattr.rdoc +0 -43
- data/demo/core/module/class_extend.rdoc +0 -64
- data/demo/core/module/method_space.rdoc +0 -55
- data/demo/core/string/bytes.rdoc +0 -8
- data/demo/core/string/camelcase.rdoc +0 -47
- data/demo/core/string/characters.rdoc +0 -11
- data/demo/core/string/cleave.rdoc +0 -49
- data/demo/core/string/divide.rdoc +0 -9
- data/demo/core/string/each_char.rdoc +0 -9
- data/demo/core/string/each_word.rdoc +0 -9
- data/demo/core/string/end_with.rdoc +0 -6
- data/demo/core/string/expand_tabs.rdoc +0 -69
- data/demo/core/string/fold.rdoc +0 -14
- data/demo/core/string/indent.rdoc +0 -65
- data/demo/core/string/interpolate.rdoc +0 -7
- data/demo/core/string/lchomp.rdoc +0 -14
- data/demo/core/string/line_wrap.rdoc +0 -7
- data/demo/core/string/lines.rdoc +0 -8
- data/demo/core/string/methodize.rdoc +0 -22
- data/demo/core/string/modulize.rdoc +0 -22
- data/demo/core/string/mscan.rdoc +0 -10
- data/demo/core/string/natcmp.rdoc +0 -10
- data/demo/core/string/nchar.rdoc +0 -9
- data/demo/core/string/op_sub.rdoc +0 -7
- data/demo/core/string/pathize.rdoc +0 -22
- data/demo/core/string/quote.rdoc +0 -20
- data/demo/core/string/range.rdoc +0 -19
- data/demo/core/string/rewrite.rdoc +0 -9
- data/demo/core/string/shatter.rdoc +0 -9
- data/demo/core/string/snakecase.rdoc +0 -10
- data/demo/core/string/splice.rdoc +0 -28
- data/demo/core/string/start_with.rdoc +0 -7
- data/demo/core/string/subtract.rdoc +0 -8
- data/demo/core/string/tab.rdoc +0 -16
- data/demo/core/string/tabto.rdoc +0 -29
- data/demo/core/string/titlecase.rdoc +0 -8
- data/demo/core/string/to_re.rdoc +0 -22
- data/demo/core/string/unfold.rdoc +0 -9
- data/demo/core/string/unindent.rdoc +0 -65
- data/demo/core/string/unquote.rdoc +0 -6
- data/demo/core/string/variablize.rdoc +0 -7
- data/demo/core/string/word_wrap.rdoc +0 -54
- data/demo/core/string/words.rdoc +0 -13
- data/demo/core/string/xor.rdoc +0 -8
- data/lib/core/facets/binding/local_variables.rb +0 -16
- data/lib/core/facets/string/tab.rb +0 -2
- data/lib/core/facets/string/tabto.rb +0 -2
- data/test/core/array/test_after.rb +0 -27
- data/test/core/array/test_combination.rb +0 -25
- data/test/core/array/test_index.rb +0 -20
- data/test/core/array/test_permutation.rb +0 -20
- data/test/core/array/test_product.rb +0 -64
- data/test/core/array/test_rotate.rb +0 -38
- data/test/core/array/test_select.rb +0 -16
- data/test/core/binding/test_eval.rb +0 -15
- data/test/core/binding/test_local_variables.rb +0 -36
- data/test/core/enumerable/test_cluster_by.rb +0 -30
- data/test/core/enumerable/test_count.rb +0 -32
- data/test/core/enumerable/test_each_with_object.rb +0 -18
- data/test/core/enumerable/test_group_by.rb +0 -36
- data/test/core/enumerable/test_none.rb +0 -29
- data/test/core/enumerable/test_one.rb +0 -34
- data/test/core/enumerable/test_take.rb +0 -15
- data/test/core/hash/test_select.rb +0 -44
- data/test/core/hash/test_url_params.rb +0 -26
- data/test/core/integer/test_even.rb +0 -24
- data/test/core/integer/test_odd.rb +0 -24
- data/test/core/kernel/test_require_relative.rb +0 -12
- data/test/core/nilclass/test_to_f.rb +0 -13
- data/test/core/proc/test_curry.rb +0 -38
- data/test/core/string/test_bytes.rb +0 -13
- data/test/core/string/test_each_char.rb +0 -17
- data/test/core/string/test_end_with.rb +0 -24
- data/test/core/string/test_lines.rb +0 -15
- data/test/core/string/test_start_with.rb +0 -24
- data/test/core/string/test_tab.rb +0 -16
- data/test/core/symbol/test_to_proc.rb +0 -35
- data/test/core/to_hash_tc.rb +0 -210
- data/test/core/unboundmethod/test_name.rb +0 -19
@@ -1,20 +0,0 @@
|
|
1
|
-
== Comparable#cap
|
2
|
-
|
3
|
-
require 'facets/comparable/cap'
|
4
|
-
|
5
|
-
3.cap(4).assert == 3
|
6
|
-
4.cap(4).assert == 4
|
7
|
-
5.cap(4).assert == 4
|
8
|
-
|
9
|
-
== Comparable#at_most
|
10
|
-
|
11
|
-
3.at_most(4).assert == 3
|
12
|
-
4.at_most(4).assert == 4
|
13
|
-
5.at_most(4).assert == 4
|
14
|
-
|
15
|
-
== Comparable#at_least
|
16
|
-
|
17
|
-
3.at_least(4).assert == 4
|
18
|
-
4.at_least(4).assert == 4
|
19
|
-
5.at_least(4).assert == 5
|
20
|
-
|
@@ -1,37 +0,0 @@
|
|
1
|
-
== Comparable#clip
|
2
|
-
|
3
|
-
require 'facets/comparable/clip'
|
4
|
-
|
5
|
-
single argument
|
6
|
-
|
7
|
-
3.clip(4).assert == 4
|
8
|
-
4.clip(4).assert == 4
|
9
|
-
5.clip(4).assert == 5
|
10
|
-
|
11
|
-
two arguments
|
12
|
-
|
13
|
-
4.clip(3,5).assert == 4
|
14
|
-
3.clip(3,5).assert == 3
|
15
|
-
5.clip(3,5).assert == 5
|
16
|
-
2.clip(3,5).assert == 3
|
17
|
-
6.clip(3,5).assert == 5
|
18
|
-
|
19
|
-
on strings
|
20
|
-
|
21
|
-
'd'.clip('c','e').assert == 'd'
|
22
|
-
'c'.clip('c','e').assert == 'c'
|
23
|
-
'e'.clip('c','e').assert == 'e'
|
24
|
-
'b'.clip('c','e').assert == 'c'
|
25
|
-
'f'.clip('c','e').assert == 'e'
|
26
|
-
|
27
|
-
== Comparable#bound
|
28
|
-
|
29
|
-
The bound method is an alias for #clip. It is actually
|
30
|
-
the original name of this method.
|
31
|
-
|
32
|
-
3.bound(4).assert == 4
|
33
|
-
|
34
|
-
4.bound(3,5).assert == 4
|
35
|
-
|
36
|
-
'd'.bound('c','e').assert == 'd'
|
37
|
-
|
@@ -1,18 +0,0 @@
|
|
1
|
-
== Comparable#cmp
|
2
|
-
|
3
|
-
require 'facets/comparable/cmp'
|
4
|
-
|
5
|
-
on integers
|
6
|
-
|
7
|
-
3.cmp(4).assert == -1
|
8
|
-
3.cmp(3).assert == 0
|
9
|
-
3.cmp(2).assert == 1
|
10
|
-
|
11
|
-
on strings
|
12
|
-
|
13
|
-
"abc".cmp("abc").assert == 0
|
14
|
-
"abc".cmp("abcd").assert == -1
|
15
|
-
"abcd".cmp("abc").assert == 1
|
16
|
-
"abc".cmp("bcd").assert == -1
|
17
|
-
"bcd".cmp("abc").assert == 1
|
18
|
-
|
@@ -1,29 +0,0 @@
|
|
1
|
-
== Comparable#[]
|
2
|
-
|
3
|
-
require 'facets/comparable/op_get'
|
4
|
-
|
5
|
-
c = Class.new do
|
6
|
-
include Comparable[:a,:b]
|
7
|
-
|
8
|
-
attr_accessor :a, :b
|
9
|
-
|
10
|
-
def initialize(a,b)
|
11
|
-
@a=a; @b=b
|
12
|
-
end
|
13
|
-
end
|
14
|
-
|
15
|
-
a = [c.new(10,20),c.new(10,30)]
|
16
|
-
a.sort.assert == a
|
17
|
-
|
18
|
-
a = [c.new(10,30),c.new(10,20)]
|
19
|
-
a.sort.assert == a.reverse
|
20
|
-
|
21
|
-
a = [c.new(10,10),c.new(20,10)]
|
22
|
-
a.sort.assert == a
|
23
|
-
|
24
|
-
a = [c.new(20,10),c.new(10,10)]
|
25
|
-
a.sort.assert == a.reverse
|
26
|
-
|
27
|
-
a = [c.new(10,30),c.new(20,10)]
|
28
|
-
a.sort.assert == a
|
29
|
-
|
data/demo/core/dir/ascend.rdoc
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
== Dir#ascend
|
2
|
-
|
3
|
-
require 'facets/dir/ascend'
|
4
|
-
|
5
|
-
path = 'A/B/C'
|
6
|
-
|
7
|
-
tmp = []
|
8
|
-
|
9
|
-
Dir.ascend(path) do |d|
|
10
|
-
tmp << d
|
11
|
-
end
|
12
|
-
|
13
|
-
tmp.assert == %w{A/B/C A/B A}
|
14
|
-
|
15
|
-
Exclude current path.
|
16
|
-
|
17
|
-
tmp = []
|
18
|
-
|
19
|
-
Dir.ascend(path, false) do |d|
|
20
|
-
tmp << d
|
21
|
-
end
|
22
|
-
|
23
|
-
tmp.assert == %w{A/B A}
|
24
|
-
|
data/demo/core/dir/descend.rdoc
DELETED
@@ -1,41 +0,0 @@
|
|
1
|
-
== Dir#multiglob
|
2
|
-
|
3
|
-
Dir#multglob is like Dir#glob but it can handle more than one match
|
4
|
-
parameter at a time.
|
5
|
-
|
6
|
-
Given a directory 'multiglob' containing:
|
7
|
-
|
8
|
-
A.txt
|
9
|
-
A/B.txt
|
10
|
-
A/B/C.txt
|
11
|
-
|
12
|
-
We can use #multglob to find multiple matches.
|
13
|
-
|
14
|
-
require 'facets/dir/multiglob'
|
15
|
-
|
16
|
-
x = %w{
|
17
|
-
multiglob/A
|
18
|
-
multiglob/A.txt
|
19
|
-
}
|
20
|
-
|
21
|
-
r = Dir.multiglob('multiglob/A', 'multiglob/A.*').sort
|
22
|
-
|
23
|
-
r.assert == x
|
24
|
-
|
25
|
-
== Dir#multiglob_r
|
26
|
-
|
27
|
-
Dir#multiglob_r is like #multiglob but automatically searches
|
28
|
-
directories recrusively.
|
29
|
-
|
30
|
-
x = %w{
|
31
|
-
multiglob/A
|
32
|
-
multiglob/A/B
|
33
|
-
multiglob/A.txt
|
34
|
-
multiglob/A/B.txt
|
35
|
-
multiglob/A/B/C.txt
|
36
|
-
}.sort
|
37
|
-
|
38
|
-
r = Dir.multiglob_r('multiglob/*').sort
|
39
|
-
|
40
|
-
r.assert == x
|
41
|
-
|
data/demo/core/dir/parent.rdoc
DELETED
data/demo/core/dir/recurse.rdoc
DELETED
@@ -1,41 +0,0 @@
|
|
1
|
-
== Dir#recurse
|
2
|
-
|
3
|
-
Given a directory 'recurse' containing:
|
4
|
-
|
5
|
-
A.txt
|
6
|
-
A/B.txt
|
7
|
-
A/B/C.txt
|
8
|
-
|
9
|
-
We can use #recurse to gather a complete recursive
|
10
|
-
list of all the entries.
|
11
|
-
|
12
|
-
require 'facets/dir/recurse'
|
13
|
-
|
14
|
-
x = %w{
|
15
|
-
recurse/A
|
16
|
-
recurse/A.txt
|
17
|
-
recurse/A/B
|
18
|
-
recurse/A/B.txt
|
19
|
-
recurse/A/B/C.txt
|
20
|
-
}.sort
|
21
|
-
|
22
|
-
r = Dir.recurse('recurse').sort
|
23
|
-
|
24
|
-
r.assert == x
|
25
|
-
|
26
|
-
== Dir#ls_r
|
27
|
-
|
28
|
-
Dir#ls_r is an alias for #recurse which can also be used to gather
|
29
|
-
a complete recursive list of all the entries.
|
30
|
-
|
31
|
-
x = %w{
|
32
|
-
recurse/A
|
33
|
-
recurse/A.txt
|
34
|
-
recurse/A/B
|
35
|
-
recurse/A/B.txt
|
36
|
-
recurse/A/B/C.txt
|
37
|
-
}.sort
|
38
|
-
|
39
|
-
r = Dir.ls_r('recurse').sort
|
40
|
-
|
41
|
-
r.assert == x
|
@@ -1,21 +0,0 @@
|
|
1
|
-
== Hash#recursively
|
2
|
-
|
3
|
-
require 'facets/hash/recursively'
|
4
|
-
|
5
|
-
h = {:a=>1, :b=>{:c=>3}}
|
6
|
-
|
7
|
-
Without a block passed tot he #recursive method, the block passed to the
|
8
|
-
enumeratig method will be used for both recursive and non-recursive yields.
|
9
|
-
|
10
|
-
r = h.recursively.map{ |k,v| [k.to_s, v] }
|
11
|
-
|
12
|
-
r.assert == [['a', 1], ['b', [['c', 3]]]]
|
13
|
-
|
14
|
-
But if we pass a block to #recursive we can treat the recusive yield
|
15
|
-
separately, which in turn allows us to manipulate the non-recursive
|
16
|
-
yields with a different procedure.
|
17
|
-
|
18
|
-
r = h.recursively{ |k,v| [k.to_s, v] }.map{ |k,v| [k.to_s,v.to_s] }
|
19
|
-
|
20
|
-
r.assert == [['a','1'], ['b', [['c', '3']]]]
|
21
|
-
|
data/demo/core/indexable.rdoc
DELETED
@@ -1,95 +0,0 @@
|
|
1
|
-
= Indexable
|
2
|
-
|
3
|
-
Indexable it a module, like Enumerable, but provides methods specific
|
4
|
-
to an indexable collection. The Indexable module can be used independently,
|
5
|
-
but Facets can also automatically use it to extend Array.
|
6
|
-
|
7
|
-
require 'facets/array/indexable'
|
8
|
-
|
9
|
-
== Indexable#head
|
10
|
-
|
11
|
-
a = [1,2,3,4,5]
|
12
|
-
a.head.assert = [1]
|
13
|
-
|
14
|
-
== Indexable#tail
|
15
|
-
|
16
|
-
a = [1,2,3,4,5]
|
17
|
-
a.tail.assert = [2,3,4,5]
|
18
|
-
|
19
|
-
== Indexable#foot
|
20
|
-
|
21
|
-
a = [1,2,3,4,5]
|
22
|
-
a.foot.assert = [5]
|
23
|
-
|
24
|
-
== Indexable#body
|
25
|
-
|
26
|
-
a = [1,2,3,4,5]
|
27
|
-
a.body.assert = [1,2,3,4]
|
28
|
-
|
29
|
-
== Indexable#mid
|
30
|
-
|
31
|
-
a = [1,2,3,4,5]
|
32
|
-
b = [1,2,3,4,5,6]
|
33
|
-
a.mid.assert = 3
|
34
|
-
b.mid.assert = 4
|
35
|
-
a.mid(1).assert = 4
|
36
|
-
b.mid(1).assert = 5
|
37
|
-
b.mid(2).assert = 6
|
38
|
-
b.mid(-1).assert = 3
|
39
|
-
|
40
|
-
== Indexable#middle
|
41
|
-
|
42
|
-
a = [1,2,3,4,5]
|
43
|
-
b = [1,2,3,4,5,6]
|
44
|
-
a.middle.assert = [3]
|
45
|
-
b.middle.assert = [3,4]
|
46
|
-
|
47
|
-
== Indexable#thru
|
48
|
-
|
49
|
-
[0,1,2,3,4,5].thru(2,4).assert = [2,3,4]
|
50
|
-
[0,1,2,3,4,5].thru(0,1).assert = [0,1]
|
51
|
-
|
52
|
-
== Indexable#first=
|
53
|
-
|
54
|
-
a = [1,2]
|
55
|
-
a.first = 0
|
56
|
-
a.assert = [0,2]
|
57
|
-
|
58
|
-
== Indexable#last=
|
59
|
-
|
60
|
-
a = [1,2]
|
61
|
-
a.last = 3
|
62
|
-
a.assert = [1,3]
|
63
|
-
|
64
|
-
== Indexable#ends
|
65
|
-
|
66
|
-
[1,2,3,4,5].ends.assert = 4
|
67
|
-
|
68
|
-
== Indexable#pos
|
69
|
-
|
70
|
-
a = [1,2,3,4,5]
|
71
|
-
a.pos(1).assert = 0
|
72
|
-
a.pos(-1).assert = 4
|
73
|
-
|
74
|
-
== Indexable#range
|
75
|
-
|
76
|
-
a = [1,2,3,4,5]
|
77
|
-
b = [1,2,3,4,5,6]
|
78
|
-
a.range.assert = (0..4)
|
79
|
-
b.range.assert = (0..5)
|
80
|
-
a.range(2,4).assert = (1..3)
|
81
|
-
b.range(2,3).assert = (1..2)
|
82
|
-
b.range(4,2).assert = (3..1)
|
83
|
-
|
84
|
-
== Indexable#first!
|
85
|
-
|
86
|
-
a = [1,2,3]
|
87
|
-
a.first!.assert = 1
|
88
|
-
a.assert = [2,3]
|
89
|
-
|
90
|
-
== Indexable#last!
|
91
|
-
|
92
|
-
a = [1,2,3]
|
93
|
-
a.last!.assert = 3
|
94
|
-
a.assert = [1,2]
|
95
|
-
|
@@ -1,46 +0,0 @@
|
|
1
|
-
== Integer#bit
|
2
|
-
|
3
|
-
require 'facets/integer/bitmask'
|
4
|
-
|
5
|
-
0.bit(0).assert == 1
|
6
|
-
0.bit(1).assert == 2
|
7
|
-
0.bit(2).assert == 4
|
8
|
-
0.bit(3).assert == 8
|
9
|
-
|
10
|
-
negate
|
11
|
-
|
12
|
-
1.bit(~0).assert == 0
|
13
|
-
2.bit(~1).assert == 0
|
14
|
-
4.bit(~2).assert == 0
|
15
|
-
8.bit(~3).assert == 0
|
16
|
-
|
17
|
-
== Integer#bit?
|
18
|
-
|
19
|
-
a = 8
|
20
|
-
assert(! a.bit?(0))
|
21
|
-
assert(! a.bit?(1))
|
22
|
-
assert(! a.bit?(2))
|
23
|
-
assert( a.bit?(3))
|
24
|
-
assert(! a.bit?(4))
|
25
|
-
assert(! a.bit?(5))
|
26
|
-
|
27
|
-
== Integer#bit_clear
|
28
|
-
|
29
|
-
1.bit_clear(0).assert == 0
|
30
|
-
2.bit_clear(1).assert == 0
|
31
|
-
4.bit_clear(2).assert == 0
|
32
|
-
8.bit_clear(3).assert == 0
|
33
|
-
|
34
|
-
== Integer#bitmask
|
35
|
-
|
36
|
-
a = 1
|
37
|
-
m = Bit(4)
|
38
|
-
a = a.bitmask(m)
|
39
|
-
a.assert == 17
|
40
|
-
assert( a.bitmask?(m) )
|
41
|
-
|
42
|
-
== Kernel#Bit
|
43
|
-
|
44
|
-
n = Bit(4)
|
45
|
-
n.assert == 16
|
46
|
-
|