facets 2.9.2 → 2.9.3
Sign up to get free protection for your applications and to get access to all the features.
- data/.ruby +9 -12
- data/.yardopts +10 -0
- data/HISTORY.rdoc +586 -898
- data/NOTICE.rdoc +30 -30
- data/README.rdoc +50 -60
- data/lib/core/facets.rb +1 -59
- data/lib/core/facets/array.rb +63 -89
- data/lib/core/facets/array/each_pair.rb +14 -0
- data/lib/core/facets/array/each_value.rb +6 -0
- data/lib/core/facets/array/median.rb +32 -0
- data/lib/core/facets/array/mode.rb +1 -1
- data/lib/core/facets/array/nonuniq.rb +41 -4
- data/{src/core/facets/array/duplicates.rb → lib/core/facets/array/occurent.rb} +0 -0
- data/{src/core-uncommon → lib/core}/facets/array/op_pow.rb +6 -1
- data/lib/core/facets/binding.rb +14 -36
- data/lib/core/facets/binding/local_variables.rb +1 -0
- data/lib/core/facets/binding/op.rb +3 -23
- data/{src/core/facets/binding/op.rb → lib/core/facets/binding/op_get.rb} +3 -0
- data/lib/core/facets/binding/op_set.rb +1 -0
- data/lib/core/facets/binding/self.rb +8 -3
- data/lib/core/facets/binding/with.rb +12 -0
- data/lib/core/facets/class.rb +9 -14
- data/lib/core/facets/class/descendants.rb +2 -1
- data/lib/core/facets/class/hierarchically.rb +12 -0
- data/lib/{core-uncommon → core}/facets/class/preallocate.rb +5 -2
- data/lib/core/facets/class/singleton.rb +13 -0
- data/lib/core/facets/comparable.rb +8 -18
- data/lib/core/facets/denumerable.rb +3 -2
- data/lib/core/facets/dir.rb +7 -16
- data/lib/core/facets/enumerable.rb +37 -74
- data/lib/core/facets/enumerable/accumulate.rb +8 -4
- data/lib/core/facets/enumerable/defer.rb +0 -27
- data/lib/core/facets/enumerable/hashify.rb +31 -0
- data/lib/core/facets/enumerable/incase.rb +19 -0
- data/lib/core/facets/enumerable/map_with.rb +3 -0
- data/lib/core/facets/enumerable/modulate.rb +1 -1
- data/lib/core/facets/enumerable/sum.rb +4 -2
- data/lib/core/facets/exception.rb +4 -11
- data/lib/core/facets/exception/detail.rb +3 -9
- data/lib/core/facets/exception/error_print.rb +80 -0
- data/lib/core/facets/file.rb +15 -30
- data/lib/core/facets/file/atomic_id.rb +9 -0
- data/lib/core/facets/file/atomic_open.rb +26 -0
- data/lib/{supplemental/facets/atomicfile.rb → core/facets/file/atomic_write.rb} +15 -8
- data/lib/core/facets/filetest.rb +7 -16
- data/lib/core/facets/fixnum.rb +7 -0
- data/lib/core/facets/float.rb +2 -6
- data/lib/core/facets/functor.rb +16 -0
- data/lib/core/facets/hash.rb +54 -108
- data/lib/core/facets/hash/collate.rb +3 -30
- data/lib/core/facets/hash/op_sub.rb +1 -0
- data/lib/core/facets/hash/rekey.rb +18 -8
- data/lib/core/facets/hash/slice.rb +3 -2
- data/lib/core/facets/hash/update_keys.rb +2 -1
- data/lib/core/facets/hash/url_params.rb +21 -0
- data/lib/core/facets/indexable.rb +0 -2
- data/lib/core/facets/integer.rb +10 -20
- data/lib/core/facets/integer/roman.rb +1 -0
- data/lib/core/facets/kernel.rb +77 -140
- data/lib/core/facets/kernel/assign.rb +11 -13
- data/lib/{core-uncommon → core}/facets/kernel/demo.rb +8 -5
- data/lib/core/facets/kernel/eigen.rb +33 -0
- data/{src/core-uncommon → lib/core}/facets/kernel/eigenclass.rb +5 -2
- data/lib/core/facets/kernel/extend.rb +4 -1
- data/lib/core/facets/kernel/extension.rb +2 -2
- data/lib/core/facets/kernel/hierarchical_send.rb +44 -0
- data/lib/{core-uncommon → core}/facets/kernel/instance_exec.rb +4 -1
- data/lib/{core-uncommon → core}/facets/kernel/memo.rb +5 -2
- data/lib/core/facets/kernel/object_hexid.rb +23 -21
- data/lib/core/facets/kernel/singleton_class.rb +3 -2
- data/{src/core-uncommon → lib/core}/facets/kernel/trap_chain.rb +6 -1
- data/lib/{core-uncommon → core}/facets/kernel/y.rb +5 -2
- data/lib/core/facets/lazy.rb +6 -7
- data/lib/core/facets/matchdata.rb +3 -8
- data/lib/{supplemental → core}/facets/metaid.rb +0 -0
- data/lib/core/facets/method.rb +5 -6
- data/lib/core/facets/method/composition.rb +80 -0
- data/lib/{core-uncommon → core}/facets/method/memoize.rb +5 -1
- data/lib/core/facets/method/op_mul.rb +1 -0
- data/lib/core/facets/method/op_pow.rb +1 -0
- data/lib/core/facets/module.rb +60 -86
- data/{src/core-uncommon → lib/core}/facets/module/attr_class_accessor.rb +15 -3
- data/{src/core-uncommon → lib/core}/facets/module/attr_tester.rb +12 -5
- data/lib/{core-uncommon → core}/facets/module/attr_validator.rb +11 -5
- data/lib/core/facets/module/class.rb +1 -1
- data/lib/{core-uncommon → core}/facets/module/class_accessor.rb +16 -3
- data/lib/{core-uncommon → core}/facets/module/class_extend.rb +9 -2
- data/{src/core-uncommon → lib/core}/facets/module/class_inheritor.rb +5 -2
- data/lib/{core-uncommon → core}/facets/module/copy_inheritor.rb +5 -2
- data/{src/core-uncommon → lib/core}/facets/module/enclosure.rb +16 -4
- data/lib/{core-uncommon → core}/facets/module/enclosures.rb +0 -0
- data/lib/{core-uncommon → core}/facets/module/include_as.rb +0 -0
- data/{src/core-uncommon → lib/core}/facets/module/instance_function.rb +5 -1
- data/lib/{core-uncommon → core}/facets/module/let.rb +4 -0
- data/{src/core-uncommon/facets/module/cattr.rb → lib/core/facets/module/mattr.rb} +40 -8
- data/{src/core-uncommon → lib/core}/facets/module/memoize.rb +4 -0
- data/lib/{core-uncommon → core}/facets/module/method_clash.rb +11 -4
- data/lib/{core-uncommon → core}/facets/module/method_space.rb +10 -2
- data/{src/core-uncommon → lib/core}/facets/module/module_load.rb +10 -5
- data/lib/{core-uncommon → core}/facets/module/preextend.rb +4 -1
- data/lib/core/facets/nilclass.rb +3 -8
- data/lib/core/facets/numeric.rb +10 -18
- data/lib/core/facets/numeric/approx.rb +29 -6
- data/lib/core/facets/numeric/close.rb +1 -0
- data/lib/core/facets/numeric/negative.rb +1 -0
- data/lib/core/facets/numeric/positive.rb +15 -0
- data/lib/core/facets/object.rb +6 -14
- data/lib/core/facets/objectspace.rb +4 -10
- data/lib/core/facets/proc.rb +8 -18
- data/lib/core/facets/process.rb +2 -6
- data/lib/core/facets/range.rb +7 -14
- data/lib/core/facets/range/quantile.rb +18 -0
- data/lib/core/facets/regexp.rb +6 -14
- data/lib/core/facets/regexp/op_or.rb +5 -8
- data/lib/{core-uncommon/facets/integer → core/facets}/roman.rb +15 -3
- data/lib/core/facets/string.rb +69 -134
- data/{src/core-uncommon → lib/core}/facets/string/acronym.rb +4 -1
- data/lib/core/facets/string/briefcase.rb +1 -0
- data/lib/core/facets/string/camelcase.rb +60 -49
- data/{src/core-uncommon → lib/core}/facets/string/crypt.rb +5 -2
- data/lib/core/facets/string/methodize.rb +10 -11
- data/lib/core/facets/string/modulize.rb +12 -12
- data/lib/core/facets/string/natcmp.rb +3 -1
- data/lib/core/facets/string/pathize.rb +8 -4
- data/lib/core/facets/string/roman.rb +1 -0
- data/lib/core/facets/string/snakecase.rb +19 -9
- data/lib/core/facets/string/titlecase.rb +14 -2
- data/lib/core/facets/string/underscore.rb +1 -22
- data/lib/core/facets/struct.rb +2 -6
- data/lib/core/facets/symbol.rb +14 -30
- data/lib/core/facets/symbol/plain.rb +8 -0
- data/{src/core/facets/symbol/bang.rb → lib/core/facets/symbol/reader.rb} +0 -0
- data/{src/core/facets/symbol/query.rb → lib/core/facets/symbol/writer.rb} +0 -0
- data/lib/core/facets/time.rb +16 -34
- data/lib/core/facets/time/shift.rb +2 -0
- data/lib/core/facets/time/stamp.rb +14 -12
- data/lib/core/facets/unboundmethod.rb +3 -8
- data/lib/core/facets/version.rb +19 -0
- data/lib/{supplemental → standard}/facets/argvector.rb +0 -0
- data/lib/standard/facets/cloneable.rb +64 -0
- data/lib/{supplemental → standard}/facets/enumargs.rb +0 -0
- data/lib/standard/facets/equitable.rb +76 -0
- data/lib/standard/facets/fileutils/amass.rb +9 -8
- data/lib/standard/facets/instantiable.rb +25 -0
- data/lib/{supplemental → standard}/facets/interval.rb +60 -67
- data/lib/standard/facets/math.rb +57 -5
- data/lib/standard/facets/math/lgamma.rb +3 -1
- data/lib/standard/facets/math/linsolve.rb +2 -0
- data/lib/standard/facets/math/median.rb +15 -0
- data/lib/standard/facets/math/percentile.rb +40 -0
- data/lib/standard/facets/math/round.rb +9 -0
- data/lib/standard/facets/math/sqsolve.rb +7 -5
- data/lib/standard/facets/math/tgamma.rb +10 -0
- data/lib/{supplemental → standard}/facets/memoizable.rb +0 -0
- data/lib/{supplemental → standard}/facets/multipliers.rb +0 -0
- data/lib/{supplemental → standard}/facets/multiton.rb +0 -0
- data/lib/{supplemental → standard}/facets/nullclass.rb +0 -0
- data/lib/{supplemental → standard}/facets/opesc.rb +0 -0
- data/lib/standard/facets/pathname.rb +14 -1
- data/lib/{supplemental → standard}/facets/platform.rb +0 -0
- data/lib/standard/facets/set.rb +5 -1
- data/{src/supplemental → lib/standard}/facets/timer.rb +3 -2
- data/lib/{supplemental → standard}/facets/tuple.rb +0 -0
- data/qed/applique/file_helpers.rb +1 -1
- data/qed/core/dir/multiglob.rdoc +10 -10
- data/qed/core/dir/recurse.rdoc +13 -13
- data/qed/{core-uncommon → core}/module/cattr.rdoc +0 -0
- data/qed/{core-uncommon → core}/module/class_extend.rdoc +0 -0
- data/qed/{core-uncommon → core}/module/class_inheritor.rdoc +0 -0
- data/qed/{core-uncommon → core}/module/copy_inheritor.rdoc +0 -0
- data/qed/{core-uncommon → core}/module/method_space.rdoc +0 -0
- data/qed/core/string/camelcase.rdoc +19 -39
- data/qed/core/string/snakecase.rdoc +4 -3
- data/qed/standard/02_cloneable.rdoc +46 -0
- data/qed/standard/03_enumargs.rdoc +75 -0
- data/qed/standard/04_equitable.rdoc +35 -0
- data/qed/standard/05_instantiable.rdoc +42 -0
- data/qed/{supplemental → standard}/memoizable.rdoc +0 -0
- data/qed/{supplemental → standard}/mulititon.rdoc +0 -0
- data/test/core/array/test_duplicates.rb +15 -1
- data/test/core/array/test_median.rb +27 -0
- data/test/core/array/test_nonuniq.rb +2 -2
- data/test/core/array/test_occurent.rb +33 -0
- data/test/{core-uncommon → core}/class/test_preallocate.rb +0 -0
- data/test/core/denumerable_tc.rb +7 -8
- data/test/core/dir/test_each_child.rb +1 -1
- data/test/core/dir/test_multiglob.rb +1 -1
- data/test/core/enumerable/test_sum.rb +22 -0
- data/test/core/hash/test_url_params.rb +26 -0
- data/test/core/kernel/test_constant.rb +3 -3
- data/test/core/kernel/test_hierarchical_send.rb +48 -0
- data/test/core/kernel/test_object_hexid.rb +8 -4
- data/test/core/kernel/test_super_method.rb +1 -1
- data/test/{core-uncommon → core}/module/test_class_extend.rb +0 -0
- data/test/{core-uncommon → core}/module/test_class_inheritor.rb +0 -0
- data/test/{core-uncommon → core}/module/test_copy_inheritor.rb +0 -0
- data/test/{core-uncommon → core}/module/test_enclosure.rb +0 -0
- data/test/{core-uncommon → core}/module/test_instance_function.rb +0 -0
- data/test/{core-uncommon → core}/module/test_memoize.rb +0 -0
- data/test/{core-uncommon → core}/module/test_method_clash.rb +0 -0
- data/test/{core-uncommon → core}/module/test_method_space.rb +0 -0
- data/test/{core-uncommon → core}/module/test_module_load.rb +0 -0
- data/test/{core-uncommon → core}/module/test_preextend.rb +0 -0
- data/test/core/numeric/test_approx.rb +10 -1
- data/test/core/string/test_camelcase.rb +21 -38
- data/test/core/string/test_index_all.rb +5 -1
- data/test/core/string/test_pathize.rb +4 -0
- data/test/core/string/test_snakecase.rb +9 -4
- data/test/core/string/test_underscore.rb +2 -2
- data/test/core/time/test_dst_adjustment.rb +9 -1
- data/test/core/time/test_less.rb +1 -1
- data/test/core/time/test_shift.rb +6 -6
- data/test/core/time/test_stamp.rb +7 -3
- data/test/standard/math/test_abs.rb +13 -0
- data/test/standard/math/test_median.rb +17 -0
- data/test/standard/math/test_percentile.rb +13 -0
- data/test/standard/math/test_sign.rb +14 -0
- data/test/{supplemental → standard}/test_argvector.rb +0 -0
- data/test/standard/test_cloneable.rb +60 -0
- data/test/{supplemental → standard}/test_enumargs.rb +0 -0
- data/test/standard/test_equitable.rb +46 -0
- data/test/standard/test_instantiable.rb +40 -0
- data/test/{supplemental → standard}/test_memoizable.rb +0 -0
- data/test/{supplemental → standard}/test_multipliers.rb +0 -0
- data/test/standard/test_timer.rb +24 -12
- data/test/{supplemental → standard}/test_tuple.rb +0 -0
- metadata +209 -1070
- data/.gitignore +0 -11
- data/.locat +0 -24
- data/.reap/ignore +0 -1
- data/.reap/yard.reap +0 -42
- data/.test +0 -31
- data/.yard/core.yardopts +0 -7
- data/.yard/standard.yardopts +0 -7
- data/.yard/supplemental.yardopts +0 -7
- data/.yard/uncommon.yardopts +0 -7
- data/AUTHORS.rdoc +0 -100
- data/Assembly +0 -38
- data/GPL3.txt +0 -282
- data/MANIFEST +0 -1107
- data/Profile +0 -41
- data/Rakefile +0 -403
- data/VERSION +0 -1
- data/facets.gemspec +0 -152
- data/lib/core-uncommon/facets/array/median.rb +0 -17
- data/lib/core-uncommon/facets/array/op_pow.rb +0 -9
- data/lib/core-uncommon/facets/array/percentile.rb +0 -32
- data/lib/core-uncommon/facets/class/singleton.rb +0 -8
- data/lib/core-uncommon/facets/enumerable/has.rb +0 -22
- data/lib/core-uncommon/facets/enumerable/have.rb +0 -1
- data/lib/core-uncommon/facets/kernel/eigenclass.rb +0 -21
- data/lib/core-uncommon/facets/kernel/trap_chain.rb +0 -23
- data/lib/core-uncommon/facets/module/attr_class_accessor.rb +0 -39
- data/lib/core-uncommon/facets/module/attr_inheritor.rb +0 -15
- data/lib/core-uncommon/facets/module/attr_tester.rb +0 -49
- data/lib/core-uncommon/facets/module/cattr.rb +0 -264
- data/lib/core-uncommon/facets/module/class_inheritor.rb +0 -77
- data/lib/core-uncommon/facets/module/enclosure.rb +0 -82
- data/lib/core-uncommon/facets/module/instance_function.rb +0 -90
- data/lib/core-uncommon/facets/module/memoize.rb +0 -12
- data/lib/core-uncommon/facets/module/module_load.rb +0 -78
- data/lib/core-uncommon/facets/module/prepend.rb +0 -61
- data/lib/core-uncommon/facets/regexp/op_or.rb +0 -13
- data/lib/core-uncommon/facets/string/acronym.rb +0 -8
- data/lib/core-uncommon/facets/string/crypt.rb +0 -19
- data/lib/core-uncommon/facets/string/roman.rb +0 -1
- data/lib/supplemental/facets/main.rb +0 -62
- data/lib/supplemental/facets/reference.rb +0 -83
- data/lib/supplemental/facets/timer.rb +0 -207
- data/rdoc.assembly +0 -50
- data/site/.brite +0 -2
- data/site/assets/hover.js +0 -14
- data/site/assets/rdocs.js +0 -28
- data/site/assets/site.css +0 -324
- data/site/assets/syntax.css +0 -60
- data/site/atom.page +0 -25
- data/site/atom.xml +0 -20
- data/site/brite.yml +0 -3
- data/site/default.layout +0 -114
- data/site/index.html +0 -110
- data/site/index.page +0 -94
- data/site/learn.html +0 -110
- data/site/learn.page +0 -78
- data/site/media/APIdocs.png +0 -0
- data/site/media/RubyFacets.png +0 -0
- data/site/media/RubyFacetsShadow.png +0 -0
- data/site/media/RubyFacetsShadow2.png +0 -0
- data/site/media/RubyFacetsShadowFade.png +0 -0
- data/site/media/SPYlights.png +0 -0
- data/site/media/WeHeartFacets.png +0 -0
- data/site/media/abc.png +0 -0
- data/site/media/abc1.png +0 -0
- data/site/media/adverts/21-5G3Eta1L._AA_SL160_.jpg +0 -0
- data/site/media/adverts/21B53PF6W5L._AA_SL160_.jpg +0 -0
- data/site/media/adverts/21OsAAT9MaL._AA_SL160_.jpg +0 -0
- data/site/media/adverts/21PYg8IoswL._AA_SL160_.jpg +0 -0
- data/site/media/adverts/21WvvRAsbhL._AA_SL160_.jpg +0 -0
- data/site/media/adverts/amazon.html +0 -30
- data/site/media/adverts/rdoc.html +0 -15
- data/site/media/appleslice.jpg +0 -0
- data/site/media/clear.gif +0 -0
- data/site/media/core.jpg +0 -0
- data/site/media/fade_black_down.png +0 -0
- data/site/media/fade_blue_down.gif +0 -0
- data/site/media/fade_blue_up.gif +0 -0
- data/site/media/fade_red_down.png +0 -0
- data/site/media/fade_red_up (copy).png +0 -0
- data/site/media/fade_red_up.png +0 -0
- data/site/media/fade_yellow_down.jpg +0 -0
- data/site/media/fade_yellow_right.jpg +0 -0
- data/site/media/fade_yellow_up.jpg +0 -0
- data/site/media/favicon.ico +0 -0
- data/site/media/forkme.png +0 -0
- data/site/media/gray.jpg +0 -0
- data/site/media/heart.gif +0 -0
- data/site/media/itcamefrom.png +0 -0
- data/site/media/license.jpg +0 -0
- data/site/media/lightbulb.jpg +0 -0
- data/site/media/menu_bkg.png +0 -0
- data/site/media/mini.png +0 -0
- data/site/media/nitro.png +0 -0
- data/site/media/patch125.jpg +0 -0
- data/site/media/people.jpg +0 -0
- data/site/media/reap.png +0 -0
- data/site/media/ruby-lg.png +0 -0
- data/site/media/ruby.gif +0 -0
- data/site/media/temp.png +0 -0
- data/site/media/treetop.jpg +0 -0
- data/site/news.html +0 -110
- data/site/news.page +0 -22
- data/site/post.layout +0 -23
- data/site/posts/2008-01-01-how-facets-was-born.html +0 -110
- data/site/posts/2008-01-01-how-facets-was-born.post +0 -26
- data/site/posts/2008-03-24-release-2-4.html +0 -110
- data/site/posts/2008-03-24-release-2-4.post +0 -61
- data/site/posts/2009-07-21-new-website.html +0 -110
- data/site/posts/2009-07-21-new-website.post +0 -17
- data/site/posts/2009-08-22-release-2-7.html +0 -110
- data/site/posts/2009-08-22-release-2-7.post +0 -130
- data/site/posts/2009-11-09-release-2-8.html +0 -110
- data/site/posts/2009-11-09-release-2-8.post +0 -61
- data/site/posts/2010-09-01-release-2-9.html +0 -110
- data/site/posts/2010-09-01-release-2-9.post +0 -39
- data/site/source.html +0 -110
- data/site/source.page +0 -46
- data/src/core-uncommon/facets/array/median.rb +0 -17
- data/src/core-uncommon/facets/array/percentile.rb +0 -32
- data/src/core-uncommon/facets/class/preallocate.rb +0 -52
- data/src/core-uncommon/facets/class/singleton.rb +0 -8
- data/src/core-uncommon/facets/enumerable/has.rb +0 -22
- data/src/core-uncommon/facets/enumerable/have.rb +0 -1
- data/src/core-uncommon/facets/integer/roman.rb +0 -77
- data/src/core-uncommon/facets/kernel/demo.rb +0 -27
- data/src/core-uncommon/facets/kernel/instance_exec.rb +0 -44
- data/src/core-uncommon/facets/kernel/memo.rb +0 -41
- data/src/core-uncommon/facets/kernel/y.rb +0 -20
- data/src/core-uncommon/facets/method/memoize.rb +0 -13
- data/src/core-uncommon/facets/module/attr_inheritor.rb +0 -15
- data/src/core-uncommon/facets/module/attr_validator.rb +0 -40
- data/src/core-uncommon/facets/module/class_accessor.rb +0 -33
- data/src/core-uncommon/facets/module/class_extend.rb +0 -85
- data/src/core-uncommon/facets/module/copy_inheritor.rb +0 -42
- data/src/core-uncommon/facets/module/enclosures.rb +0 -1
- data/src/core-uncommon/facets/module/include_as.rb +0 -1
- data/src/core-uncommon/facets/module/let.rb +0 -27
- data/src/core-uncommon/facets/module/method_clash.rb +0 -59
- data/src/core-uncommon/facets/module/method_space.rb +0 -99
- data/src/core-uncommon/facets/module/preextend.rb +0 -29
- data/src/core-uncommon/facets/module/prepend.rb +0 -61
- data/src/core-uncommon/facets/regexp/op_or.rb +0 -13
- data/src/core-uncommon/facets/string/roman.rb +0 -1
- data/src/core/facets.rb +0 -70
- data/src/core/facets.yml +0 -57
- data/src/core/facets/applique/file_helpers.rb +0 -33
- data/src/core/facets/array.rb +0 -28
- data/src/core/facets/array/after.rb +0 -1
- data/src/core/facets/array/before.rb +0 -39
- data/src/core/facets/array/collapse.rb +0 -12
- data/src/core/facets/array/collisions.rb +0 -1
- data/src/core/facets/array/combination.rb +0 -43
- data/src/core/facets/array/commonality.rb +0 -37
- data/src/core/facets/array/conjoin.rb +0 -89
- data/src/core/facets/array/contains.rb +0 -7
- data/src/core/facets/array/delete.rb +0 -4
- data/src/core/facets/array/delete_unless.rb +0 -15
- data/src/core/facets/array/delete_values.rb +0 -50
- data/src/core/facets/array/divide.rb +0 -20
- data/src/core/facets/array/entropy.rb +0 -39
- data/src/core/facets/array/extract_options.rb +0 -31
- data/src/core/facets/array/from.rb +0 -33
- data/src/core/facets/array/index.rb +0 -23
- data/src/core/facets/array/indexable.rb +0 -31
- data/src/core/facets/array/merge.rb +0 -22
- data/src/core/facets/array/mode.rb +0 -22
- data/src/core/facets/array/nonuniq.rb +0 -37
- data/src/core/facets/array/not_empty.rb +0 -13
- data/src/core/facets/array/only.rb +0 -26
- data/src/core/facets/array/pad.rb +0 -41
- data/src/core/facets/array/peek.rb +0 -1
- data/src/core/facets/array/permutation.rb +0 -32
- data/src/core/facets/array/poke.rb +0 -1
- data/src/core/facets/array/probability.rb +0 -39
- data/src/core/facets/array/product.rb +0 -30
- data/src/core/facets/array/pull.rb +0 -30
- data/src/core/facets/array/recurse.rb +0 -29
- data/src/core/facets/array/recursively.rb +0 -47
- data/src/core/facets/array/rotate.rb +0 -48
- data/src/core/facets/array/select.rb +0 -20
- data/src/core/facets/array/splice.rb +0 -27
- data/src/core/facets/array/split.rb +0 -27
- data/src/core/facets/array/store.rb +0 -12
- data/src/core/facets/array/thru.rb +0 -1
- data/src/core/facets/array/traverse.rb +0 -44
- data/src/core/facets/array/uniq_by.rb +0 -16
- data/src/core/facets/binding.rb +0 -32
- data/src/core/facets/binding/__callee__.rb +0 -1
- data/src/core/facets/binding/__method__.rb +0 -1
- data/src/core/facets/binding/call_stack.rb +0 -1
- data/src/core/facets/binding/caller.rb +0 -44
- data/src/core/facets/binding/callstack.rb +0 -1
- data/src/core/facets/binding/defined.rb +0 -12
- data/src/core/facets/binding/eval.rb +0 -14
- data/src/core/facets/binding/local_variables.rb +0 -17
- data/src/core/facets/binding/self.rb +0 -12
- data/src/core/facets/boolean.rb +0 -121
- data/src/core/facets/class.rb +0 -20
- data/src/core/facets/class/descendants.rb +0 -35
- data/src/core/facets/class/methodize.rb +0 -19
- data/src/core/facets/class/pathize.rb +0 -19
- data/src/core/facets/class/subclasses.rb +0 -28
- data/src/core/facets/class/to_proc.rb +0 -25
- data/src/core/facets/comparable.rb +0 -20
- data/src/core/facets/comparable/at_least.rb +0 -1
- data/src/core/facets/comparable/at_most.rb +0 -1
- data/src/core/facets/comparable/bound.rb +0 -1
- data/src/core/facets/comparable/cap.rb +0 -34
- data/src/core/facets/comparable/clip.rb +0 -38
- data/src/core/facets/comparable/cmp.rb +0 -41
- data/src/core/facets/comparable/op_get.rb +0 -45
- data/src/core/facets/denumerable.rb +0 -76
- data/src/core/facets/dir.rb +0 -20
- data/src/core/facets/dir/ascend.rb +0 -56
- data/src/core/facets/dir/descend.rb +0 -1
- data/src/core/facets/dir/each_child.rb +0 -16
- data/src/core/facets/dir/multiglob.rb +0 -78
- data/src/core/facets/dir/parent.rb +0 -16
- data/src/core/facets/dir/recurse.rb +0 -35
- data/src/core/facets/enumerable.rb +0 -20
- data/src/core/facets/enumerable/accumulate.rb +0 -61
- data/src/core/facets/enumerable/cluster_by.rb +0 -18
- data/src/core/facets/enumerable/collect_with_index.rb +0 -2
- data/src/core/facets/enumerable/compact_map.rb +0 -36
- data/src/core/facets/enumerable/count.rb +0 -53
- data/src/core/facets/enumerable/defer.rb +0 -73
- data/src/core/facets/enumerable/each_by.rb +0 -33
- data/src/core/facets/enumerable/each_with_object.rb +0 -38
- data/src/core/facets/enumerable/every.rb +0 -40
- data/src/core/facets/enumerable/ewise.rb +0 -59
- data/src/core/facets/enumerable/exclude.rb +0 -16
- data/src/core/facets/enumerable/expand.rb +0 -15
- data/src/core/facets/enumerable/filter.rb +0 -33
- data/src/core/facets/enumerable/find_yield.rb +0 -42
- data/src/core/facets/enumerable/frequency.rb +0 -24
- data/src/core/facets/enumerable/graph.rb +0 -37
- data/src/core/facets/enumerable/group_by.rb +0 -33
- data/src/core/facets/enumerable/map_by.rb +0 -35
- data/src/core/facets/enumerable/map_detect.rb +0 -1
- data/src/core/facets/enumerable/map_send.rb +0 -26
- data/src/core/facets/enumerable/map_with.rb +0 -18
- data/src/core/facets/enumerable/map_with_index.rb +0 -23
- data/src/core/facets/enumerable/mash.rb +0 -1
- data/src/core/facets/enumerable/modulate.rb +0 -22
- data/src/core/facets/enumerable/none.rb +0 -32
- data/src/core/facets/enumerable/occur.rb +0 -38
- data/src/core/facets/enumerable/one.rb +0 -39
- data/src/core/facets/enumerable/per.rb +0 -85
- data/src/core/facets/enumerable/purge.rb +0 -43
- data/src/core/facets/enumerable/recursively.rb +0 -66
- data/src/core/facets/enumerable/sum.rb +0 -16
- data/src/core/facets/enumerable/take.rb +0 -16
- data/src/core/facets/enumerable/uniq_by.rb +0 -13
- data/src/core/facets/enumerable/visit.rb +0 -30
- data/src/core/facets/enumerable/zip_map.rb +0 -1
- data/src/core/facets/enumerator.rb +0 -75
- data/src/core/facets/enumerator/fx.rb +0 -36
- data/src/core/facets/exception.rb +0 -21
- data/src/core/facets/exception/detail.rb +0 -23
- data/src/core/facets/exception/raised.rb +0 -14
- data/src/core/facets/exception/suppress.rb +0 -22
- data/src/core/facets/file.rb +0 -20
- data/src/core/facets/file/append.rb +0 -14
- data/src/core/facets/file/create.rb +0 -21
- data/src/core/facets/file/ext.rb +0 -36
- data/src/core/facets/file/null.rb +0 -21
- data/src/core/facets/file/read_binary.rb +0 -18
- data/src/core/facets/file/read_list.rb +0 -34
- data/src/core/facets/file/rewrite.rb +0 -90
- data/src/core/facets/file/rootname.rb +0 -23
- data/src/core/facets/file/sanitize.rb +0 -18
- data/src/core/facets/file/split_all.rb +0 -19
- data/src/core/facets/file/split_root.rb +0 -13
- data/src/core/facets/file/write.rb +0 -24
- data/src/core/facets/file/writelines.rb +0 -27
- data/src/core/facets/filetest.rb +0 -20
- data/src/core/facets/filetest/absolute.rb +0 -1
- data/src/core/facets/filetest/contains.rb +0 -12
- data/src/core/facets/filetest/relative.rb +0 -38
- data/src/core/facets/filetest/root.rb +0 -17
- data/src/core/facets/filetest/safe.rb +0 -20
- data/src/core/facets/filetest/separator_pattern.rb +0 -19
- data/src/core/facets/float.rb +0 -20
- data/src/core/facets/float/round.rb +0 -2
- data/src/core/facets/functor.rb +0 -78
- data/src/core/facets/hash.rb +0 -20
- data/src/core/facets/hash/alias.rb +0 -31
- data/src/core/facets/hash/argumentize.rb +0 -28
- data/src/core/facets/hash/at.rb +0 -8
- data/src/core/facets/hash/autonew.rb +0 -24
- data/src/core/facets/hash/collate.rb +0 -62
- data/src/core/facets/hash/count.rb +0 -12
- data/src/core/facets/hash/data.rb +0 -41
- data/src/core/facets/hash/dearray_values.rb +0 -46
- data/src/core/facets/hash/deep_merge.rb +0 -33
- data/src/core/facets/hash/delete.rb +0 -4
- data/src/core/facets/hash/delete_at.rb +0 -7
- data/src/core/facets/hash/delete_unless.rb +0 -17
- data/src/core/facets/hash/delete_values.rb +0 -41
- data/src/core/facets/hash/diff.rb +0 -17
- data/src/core/facets/hash/except.rb +0 -25
- data/src/core/facets/hash/graph.rb +0 -18
- data/src/core/facets/hash/insert.rb +0 -19
- data/src/core/facets/hash/inverse.rb +0 -30
- data/src/core/facets/hash/join.rb +0 -17
- data/src/core/facets/hash/keys.rb +0 -45
- data/src/core/facets/hash/mash.rb +0 -1
- data/src/core/facets/hash/new_with.rb +0 -15
- data/src/core/facets/hash/op.rb +0 -7
- data/src/core/facets/hash/op_add.rb +0 -12
- data/src/core/facets/hash/op_and.rb +0 -33
- data/src/core/facets/hash/op_mul.rb +0 -18
- data/src/core/facets/hash/op_or.rb +0 -12
- data/src/core/facets/hash/op_push.rb +0 -17
- data/src/core/facets/hash/op_sub.rb +0 -26
- data/src/core/facets/hash/recurse.rb +0 -29
- data/src/core/facets/hash/recursively.rb +0 -61
- data/src/core/facets/hash/rekey.rb +0 -79
- data/src/core/facets/hash/replace_each.rb +0 -16
- data/src/core/facets/hash/reverse_merge.rb +0 -30
- data/src/core/facets/hash/select.rb +0 -17
- data/src/core/facets/hash/slice.rb +0 -37
- data/src/core/facets/hash/stringify_keys.rb +0 -1
- data/src/core/facets/hash/subset.rb +0 -24
- data/src/core/facets/hash/swap.rb +0 -17
- data/src/core/facets/hash/symbolize_keys.rb +0 -92
- data/src/core/facets/hash/to_h.rb +0 -1
- data/src/core/facets/hash/to_mod.rb +0 -33
- data/src/core/facets/hash/to_options.rb +0 -1
- data/src/core/facets/hash/to_proc.rb +0 -39
- data/src/core/facets/hash/to_struct.rb +0 -17
- data/src/core/facets/hash/traverse.rb +0 -47
- data/src/core/facets/hash/update.rb +0 -6
- data/src/core/facets/hash/update_each.rb +0 -18
- data/src/core/facets/hash/update_keys.rb +0 -20
- data/src/core/facets/hash/update_values.rb +0 -20
- data/src/core/facets/hash/weave.rb +0 -76
- data/src/core/facets/hash/zip.rb +0 -18
- data/src/core/facets/indexable.rb +0 -270
- data/src/core/facets/instance.rb +0 -157
- data/src/core/facets/integer.rb +0 -20
- data/src/core/facets/integer/bit.rb +0 -1
- data/src/core/facets/integer/bitmask.rb +0 -99
- data/src/core/facets/integer/even.rb +0 -1
- data/src/core/facets/integer/factorial.rb +0 -21
- data/src/core/facets/integer/multiple.rb +0 -19
- data/src/core/facets/integer/odd.rb +0 -37
- data/src/core/facets/integer/of.rb +0 -18
- data/src/core/facets/integer/ordinal.rb +0 -24
- data/src/core/facets/kernel.rb +0 -20
- data/src/core/facets/kernel/__callee__.rb +0 -1
- data/src/core/facets/kernel/__class__.rb +0 -9
- data/src/core/facets/kernel/__dir__.rb +0 -26
- data/src/core/facets/kernel/__get__.rb +0 -15
- data/src/core/facets/kernel/__method__.rb +0 -48
- data/src/core/facets/kernel/__set__.rb +0 -1
- data/src/core/facets/kernel/as.rb +0 -115
- data/src/core/facets/kernel/ask.rb +0 -28
- data/src/core/facets/kernel/assign.rb +0 -76
- data/src/core/facets/kernel/assign_from.rb +0 -1
- data/src/core/facets/kernel/attr_singleton.rb +0 -59
- data/src/core/facets/kernel/blank.rb +0 -84
- data/src/core/facets/kernel/call_stack.rb +0 -56
- data/src/core/facets/kernel/callstack.rb +0 -1
- data/src/core/facets/kernel/case.rb +0 -8
- data/src/core/facets/kernel/complete.rb +0 -26
- data/src/core/facets/kernel/constant.rb +0 -20
- data/src/core/facets/kernel/d.rb +0 -27
- data/src/core/facets/kernel/deep_clone.rb +0 -1
- data/src/core/facets/kernel/deep_copy.rb +0 -38
- data/src/core/facets/kernel/disable_warnings.rb +0 -26
- data/src/core/facets/kernel/enable_warnings.rb +0 -1
- data/src/core/facets/kernel/equate.rb +0 -16
- data/src/core/facets/kernel/ergo.rb +0 -43
- data/src/core/facets/kernel/extend.rb +0 -27
- data/src/core/facets/kernel/extension.rb +0 -12
- data/src/core/facets/kernel/false.rb +0 -2
- data/src/core/facets/kernel/here.rb +0 -11
- data/src/core/facets/kernel/identical.rb +0 -4
- data/src/core/facets/kernel/in.rb +0 -13
- data/src/core/facets/kernel/instance_assign.rb +0 -20
- data/src/core/facets/kernel/instance_class.rb +0 -26
- data/src/core/facets/kernel/instance_send.rb +0 -7
- data/src/core/facets/kernel/load_all.rb +0 -1
- data/src/core/facets/kernel/load_relative.rb +0 -1
- data/src/core/facets/kernel/maybe.rb +0 -19
- data/src/core/facets/kernel/meta_alias.rb +0 -23
- data/src/core/facets/kernel/meta_class.rb +0 -17
- data/src/core/facets/kernel/meta_def.rb +0 -20
- data/src/core/facets/kernel/meta_eval.rb +0 -20
- data/src/core/facets/kernel/method.rb +0 -50
- data/src/core/facets/kernel/no.rb +0 -1
- data/src/core/facets/kernel/not.rb +0 -37
- data/src/core/facets/kernel/not_nil.rb +0 -18
- data/src/core/facets/kernel/object_class.rb +0 -10
- data/src/core/facets/kernel/object_hexid.rb +0 -31
- data/src/core/facets/kernel/object_send.rb +0 -33
- data/src/core/facets/kernel/p.rb +0 -24
- data/src/core/facets/kernel/presence.rb +0 -1
- data/src/core/facets/kernel/present.rb +0 -1
- data/src/core/facets/kernel/qua_class.rb +0 -31
- data/src/core/facets/kernel/require_all.rb +0 -42
- data/src/core/facets/kernel/require_relative.rb +0 -52
- data/src/core/facets/kernel/respond.rb +0 -42
- data/src/core/facets/kernel/returning.rb +0 -27
- data/src/core/facets/kernel/silence.rb +0 -73
- data/src/core/facets/kernel/silence_warnings.rb +0 -1
- data/src/core/facets/kernel/singleton_class.rb +0 -9
- data/src/core/facets/kernel/source_location.rb +0 -13
- data/src/core/facets/kernel/super_method.rb +0 -11
- data/src/core/facets/kernel/tap.rb +0 -48
- data/src/core/facets/kernel/temporarily.rb +0 -23
- data/src/core/facets/kernel/true.rb +0 -26
- data/src/core/facets/kernel/try.rb +0 -58
- data/src/core/facets/kernel/val.rb +0 -19
- data/src/core/facets/kernel/with.rb +0 -20
- data/src/core/facets/kernel/writers.rb +0 -91
- data/src/core/facets/kernel/yes.rb +0 -25
- data/src/core/facets/lazy.rb +0 -238
- data/src/core/facets/matchdata.rb +0 -20
- data/src/core/facets/matchdata/match.rb +0 -15
- data/src/core/facets/matchdata/matchset.rb +0 -44
- data/src/core/facets/method.rb +0 -20
- data/src/core/facets/module.rb +0 -20
- data/src/core/facets/module/abstract.rb +0 -24
- data/src/core/facets/module/alias_accessor.rb +0 -45
- data/src/core/facets/module/alias_method_chain.rb +0 -67
- data/src/core/facets/module/alias_module_function.rb +0 -30
- data/src/core/facets/module/all_instance_methods.rb +0 -19
- data/src/core/facets/module/ancestor.rb +0 -16
- data/src/core/facets/module/anonymous.rb +0 -25
- data/src/core/facets/module/attr_setter.rb +0 -52
- data/src/core/facets/module/basename.rb +0 -31
- data/src/core/facets/module/can.rb +0 -20
- data/src/core/facets/module/class.rb +0 -12
- data/src/core/facets/module/class_def.rb +0 -2
- data/src/core/facets/module/class_method_defined.rb +0 -1
- data/src/core/facets/module/extend.rb +0 -1
- data/src/core/facets/module/home.rb +0 -90
- data/src/core/facets/module/homename.rb +0 -1
- data/src/core/facets/module/housing.rb +0 -1
- data/src/core/facets/module/include_function_module.rb +0 -25
- data/src/core/facets/module/instance_method.rb +0 -25
- data/src/core/facets/module/instance_method_defined.rb +0 -23
- data/src/core/facets/module/integrate.rb +0 -49
- data/src/core/facets/module/is.rb +0 -57
- data/src/core/facets/module/methodize.rb +0 -20
- data/src/core/facets/module/modname.rb +0 -1
- data/src/core/facets/module/module_def.rb +0 -31
- data/src/core/facets/module/nodef.rb +0 -13
- data/src/core/facets/module/op.rb +0 -107
- data/src/core/facets/module/op_add.rb +0 -1
- data/src/core/facets/module/op_mul.rb +0 -1
- data/src/core/facets/module/op_sub.rb +0 -1
- data/src/core/facets/module/pathize.rb +0 -20
- data/src/core/facets/module/redefine_method.rb +0 -37
- data/src/core/facets/module/redirect_method.rb +0 -46
- data/src/core/facets/module/remove.rb +0 -1
- data/src/core/facets/module/rename_method.rb +0 -30
- data/src/core/facets/module/revise.rb +0 -41
- data/src/core/facets/module/set.rb +0 -36
- data/src/core/facets/module/singleton_method_defined.rb +0 -1
- data/src/core/facets/module/spacename.rb +0 -25
- data/src/core/facets/module/to_obj.rb +0 -20
- data/src/core/facets/module/wrap_method.rb +0 -35
- data/src/core/facets/na.rb +0 -21
- data/src/core/facets/nilclass.rb +0 -20
- data/src/core/facets/nilclass/ergo.rb +0 -1
- data/src/core/facets/nilclass/to_f.rb +0 -17
- data/src/core/facets/numeric.rb +0 -20
- data/src/core/facets/numeric/approx.rb +0 -15
- data/src/core/facets/numeric/distance.rb +0 -14
- data/src/core/facets/numeric/length.rb +0 -10
- data/src/core/facets/numeric/round.rb +0 -69
- data/src/core/facets/numeric/round_at.rb +0 -1
- data/src/core/facets/numeric/round_to.rb +0 -1
- data/src/core/facets/numeric/spacing.rb +0 -20
- data/src/core/facets/object.rb +0 -20
- data/src/core/facets/object/clone.rb +0 -1
- data/src/core/facets/object/dup.rb +0 -79
- data/src/core/facets/object/object_state.rb +0 -77
- data/src/core/facets/object/replace.rb +0 -43
- data/src/core/facets/object/try_dup.rb +0 -1
- data/src/core/facets/objectspace.rb +0 -20
- data/src/core/facets/objectspace/classes.rb +0 -11
- data/src/core/facets/objectspace/op_fetch.rb +0 -3
- data/src/core/facets/objectspace/reflect.rb +0 -62
- data/src/core/facets/proc.rb +0 -20
- data/src/core/facets/proc/bind.rb +0 -24
- data/src/core/facets/proc/bind_to.rb +0 -17
- data/src/core/facets/proc/compose.rb +0 -42
- data/src/core/facets/proc/curry.rb +0 -32
- data/src/core/facets/proc/partial.rb +0 -33
- data/src/core/facets/proc/to_method.rb +0 -38
- data/src/core/facets/proc/update.rb +0 -9
- data/src/core/facets/process.rb +0 -20
- data/src/core/facets/process/daemon.rb +0 -32
- data/src/core/facets/range.rb +0 -20
- data/src/core/facets/range/combine.rb +0 -47
- data/src/core/facets/range/overlap.rb +0 -12
- data/src/core/facets/range/to_r.rb +0 -26
- data/src/core/facets/range/umbrella.rb +0 -1
- data/src/core/facets/range/within.rb +0 -64
- data/src/core/facets/regexp.rb +0 -20
- data/src/core/facets/regexp/arity.rb +0 -17
- data/src/core/facets/regexp/multiline.rb +0 -13
- data/src/core/facets/regexp/op_add.rb +0 -18
- data/src/core/facets/regexp/op_or.rb +0 -18
- data/src/core/facets/regexp/to_re.rb +0 -28
- data/src/core/facets/string.rb +0 -20
- data/src/core/facets/string/align.rb +0 -125
- data/src/core/facets/string/bracket.rb +0 -64
- data/src/core/facets/string/bytes.rb +0 -21
- data/src/core/facets/string/camelcase.rb +0 -62
- data/src/core/facets/string/capitalized.rb +0 -49
- data/src/core/facets/string/characters.rb +0 -13
- data/src/core/facets/string/cleanlines.rb +0 -27
- data/src/core/facets/string/cleave.rb +0 -36
- data/src/core/facets/string/cmp.rb +0 -1
- data/src/core/facets/string/compress_lines.rb +0 -17
- data/src/core/facets/string/divide.rb +0 -18
- data/src/core/facets/string/each_char.rb +0 -31
- data/src/core/facets/string/each_word.rb +0 -17
- data/src/core/facets/string/edit_distance.rb +0 -124
- data/src/core/facets/string/end_with.rb +0 -1
- data/src/core/facets/string/exclude.rb +0 -10
- data/src/core/facets/string/expand_tab.rb +0 -35
- data/src/core/facets/string/file.rb +0 -35
- data/src/core/facets/string/fold.rb +0 -39
- data/src/core/facets/string/indent.rb +0 -67
- data/src/core/facets/string/index_all.rb +0 -24
- data/src/core/facets/string/interpolate.rb +0 -19
- data/src/core/facets/string/lchomp.rb +0 -33
- data/src/core/facets/string/line_wrap.rb +0 -18
- data/src/core/facets/string/lines.rb +0 -19
- data/src/core/facets/string/lowercase.rb +0 -1
- data/src/core/facets/string/margin.rb +0 -31
- data/src/core/facets/string/methodize.rb +0 -27
- data/src/core/facets/string/modulize.rb +0 -31
- data/src/core/facets/string/mscan.rb +0 -19
- data/src/core/facets/string/natcmp.rb +0 -86
- data/src/core/facets/string/nchar.rb +0 -32
- data/src/core/facets/string/newlines.rb +0 -32
- data/src/core/facets/string/op_div.rb +0 -14
- data/src/core/facets/string/op_sub.rb +0 -14
- data/src/core/facets/string/outdent.rb +0 -1
- data/src/core/facets/string/pathize.rb +0 -28
- data/src/core/facets/string/quote.rb +0 -93
- data/src/core/facets/string/random_binary.rb +0 -10
- data/src/core/facets/string/range.rb +0 -60
- data/src/core/facets/string/range_all.rb +0 -1
- data/src/core/facets/string/range_of_line.rb +0 -1
- data/src/core/facets/string/rewrite.rb +0 -24
- data/src/core/facets/string/shatter.rb +0 -22
- data/src/core/facets/string/similarity.rb +0 -89
- data/src/core/facets/string/snakecase.rb +0 -21
- data/src/core/facets/string/splice.rb +0 -33
- data/src/core/facets/string/squish.rb +0 -22
- data/src/core/facets/string/start_with.rb +0 -60
- data/src/core/facets/string/store.rb +0 -7
- data/src/core/facets/string/subtract.rb +0 -4
- data/src/core/facets/string/tab.rb +0 -17
- data/src/core/facets/string/tabto.rb +0 -19
- data/src/core/facets/string/titlecase.rb +0 -15
- data/src/core/facets/string/to_re.rb +0 -26
- data/src/core/facets/string/unbracket.rb +0 -1
- data/src/core/facets/string/underscore.rb +0 -22
- data/src/core/facets/string/unfold.rb +0 -27
- data/src/core/facets/string/unindent.rb +0 -1
- data/src/core/facets/string/unquote.rb +0 -1
- data/src/core/facets/string/uppercase.rb +0 -23
- data/src/core/facets/string/variablize.rb +0 -13
- data/src/core/facets/string/word_wrap.rb +0 -32
- data/src/core/facets/string/words.rb +0 -12
- data/src/core/facets/string/xor.rb +0 -26
- data/src/core/facets/struct.rb +0 -20
- data/src/core/facets/struct/attributes.rb +0 -15
- data/src/core/facets/symbol.rb +0 -20
- data/src/core/facets/symbol/as_s.rb +0 -17
- data/src/core/facets/symbol/chomp.rb +0 -24
- data/src/core/facets/symbol/generate.rb +0 -24
- data/src/core/facets/symbol/not.rb +0 -29
- data/src/core/facets/symbol/op_div.rb +0 -21
- data/src/core/facets/symbol/plain.rb +0 -43
- data/src/core/facets/symbol/setter.rb +0 -1
- data/src/core/facets/symbol/succ.rb +0 -23
- data/src/core/facets/symbol/thrown.rb +0 -18
- data/src/core/facets/symbol/to_proc.rb +0 -33
- data/src/core/facets/symbol/variablize.rb +0 -14
- data/src/core/facets/time.rb +0 -20
- data/src/core/facets/time/ago.rb +0 -1
- data/src/core/facets/time/change.rb +0 -46
- data/src/core/facets/time/dst_adjustment.rb +0 -24
- data/src/core/facets/time/elapse.rb +0 -18
- data/src/core/facets/time/future.rb +0 -14
- data/src/core/facets/time/hence.rb +0 -1
- data/src/core/facets/time/in.rb +0 -1
- data/src/core/facets/time/less.rb +0 -1
- data/src/core/facets/time/past.rb +0 -1
- data/src/core/facets/time/round_to.rb +0 -21
- data/src/core/facets/time/set.rb +0 -27
- data/src/core/facets/time/shift.rb +0 -95
- data/src/core/facets/time/stamp.rb +0 -45
- data/src/core/facets/time/to_time.rb +0 -21
- data/src/core/facets/time/trunc.rb +0 -15
- data/src/core/facets/to_hash.rb +0 -336
- data/src/core/facets/unboundmethod.rb +0 -20
- data/src/core/facets/unboundmethod/arguments.rb +0 -44
- data/src/core/facets/unboundmethod/name.rb +0 -28
- data/src/standard/facets/basicobject.rb +0 -75
- data/src/standard/facets/cgi.rb +0 -44
- data/src/standard/facets/continuation.rb +0 -56
- data/src/standard/facets/date.rb +0 -433
- data/src/standard/facets/digest.rb +0 -2
- data/src/standard/facets/digest/base64digest.rb +0 -45
- data/src/standard/facets/digest/salted_digest.rb +0 -44
- data/src/standard/facets/erb.rb +0 -66
- data/src/standard/facets/fileutils.rb +0 -13
- data/src/standard/facets/fileutils/amass.rb +0 -33
- data/src/standard/facets/fileutils/cp_rx.rb +0 -44
- data/src/standard/facets/fileutils/head.rb +0 -1
- data/src/standard/facets/fileutils/ln_r.rb +0 -99
- data/src/standard/facets/fileutils/outofdate.rb +0 -38
- data/src/standard/facets/fileutils/safe_ln.rb +0 -27
- data/src/standard/facets/fileutils/slice.rb +0 -55
- data/src/standard/facets/fileutils/stage.rb +0 -66
- data/src/standard/facets/fileutils/tail.rb +0 -1
- data/src/standard/facets/fileutils/wc.rb +0 -63
- data/src/standard/facets/fileutils/whereis.rb +0 -66
- data/src/standard/facets/fileutils/which.rb +0 -60
- data/src/standard/facets/find.rb +0 -16
- data/src/standard/facets/getoptlong.rb +0 -59
- data/src/standard/facets/math.rb +0 -6
- data/src/standard/facets/math/abs.rb +0 -8
- data/src/standard/facets/math/acot.rb +0 -8
- data/src/standard/facets/math/acoth.rb +0 -8
- data/src/standard/facets/math/acsc.rb +0 -8
- data/src/standard/facets/math/acsch.rb +0 -8
- data/src/standard/facets/math/amd.rb +0 -17
- data/src/standard/facets/math/approx_equal.rb +0 -15
- data/src/standard/facets/math/asec.rb +0 -8
- data/src/standard/facets/math/asech.rb +0 -8
- data/src/standard/facets/math/atkinson_index.rb +0 -16
- data/src/standard/facets/math/beta.rb +0 -9
- data/src/standard/facets/math/cdf.rb +0 -10
- data/src/standard/facets/math/ceil.rb +0 -8
- data/src/standard/facets/math/cot.rb +0 -8
- data/src/standard/facets/math/coth.rb +0 -8
- data/src/standard/facets/math/csc.rb +0 -8
- data/src/standard/facets/math/csch.rb +0 -8
- data/src/standard/facets/math/delta.rb +0 -9
- data/src/standard/facets/math/epsilon.rb +0 -21
- data/src/standard/facets/math/exp10.rb +0 -8
- data/src/standard/facets/math/exp2.rb +0 -8
- data/src/standard/facets/math/factorial.rb +0 -37
- data/src/standard/facets/math/floor.rb +0 -8
- data/src/standard/facets/math/gamma.rb +0 -12
- data/src/standard/facets/math/gcd.rb +0 -23
- data/src/standard/facets/math/gini_coefficient.rb +0 -33
- data/src/standard/facets/math/kldivergence.rb +0 -19
- data/src/standard/facets/math/lcm.rb +0 -15
- data/src/standard/facets/math/lgamma.rb +0 -21
- data/src/standard/facets/math/linsolve.rb +0 -10
- data/src/standard/facets/math/log2.rb +0 -14
- data/src/standard/facets/math/max.rb +0 -1
- data/src/standard/facets/math/mean.rb +0 -16
- data/src/standard/facets/math/median.rb +0 -15
- data/src/standard/facets/math/min.rb +0 -35
- data/src/standard/facets/math/pow.rb +0 -8
- data/src/standard/facets/math/pstd.rb +0 -1
- data/src/standard/facets/math/pvariance.rb +0 -1
- data/src/standard/facets/math/rmd.rb +0 -16
- data/src/standard/facets/math/root.rb +0 -8
- data/src/standard/facets/math/sec.rb +0 -8
- data/src/standard/facets/math/sech.rb +0 -8
- data/src/standard/facets/math/sign.rb +0 -9
- data/src/standard/facets/math/sinc.rb +0 -8
- data/src/standard/facets/math/sqr.rb +0 -8
- data/src/standard/facets/math/sqsolve.rb +0 -53
- data/src/standard/facets/math/std.rb +0 -27
- data/src/standard/facets/math/stderr.rb +0 -1
- data/src/standard/facets/math/sum.rb +0 -16
- data/src/standard/facets/math/summed_sqdevs.rb +0 -14
- data/src/standard/facets/math/theil_index.rb +0 -24
- data/src/standard/facets/math/variance.rb +0 -31
- data/src/standard/facets/net/http.rb +0 -32
- data/src/standard/facets/ostruct.rb +0 -210
- data/src/standard/facets/pathname.rb +0 -240
- data/src/standard/facets/random.rb +0 -446
- data/src/standard/facets/rbconfig.rb +0 -78
- data/src/standard/facets/set.rb +0 -32
- data/src/standard/facets/shellwords.rb +0 -112
- data/src/standard/facets/strscan.rb +0 -16
- data/src/standard/facets/thread.rb +0 -98
- data/src/standard/facets/uri.rb +0 -211
- data/src/standard/facets/yaml.rb +0 -59
- data/src/standard/facets/zlib.rb +0 -38
- data/src/supplemental/facets/argvector.rb +0 -343
- data/src/supplemental/facets/atomicfile.rb +0 -51
- data/src/supplemental/facets/enumargs.rb +0 -195
- data/src/supplemental/facets/interval.rb +0 -284
- data/src/supplemental/facets/main.rb +0 -62
- data/src/supplemental/facets/memoizable.rb +0 -141
- data/src/supplemental/facets/metaid.rb +0 -7
- data/src/supplemental/facets/multipliers.rb +0 -65
- data/src/supplemental/facets/multiton.rb +0 -387
- data/src/supplemental/facets/nullclass.rb +0 -38
- data/src/supplemental/facets/opesc.rb +0 -79
- data/src/supplemental/facets/platform.rb +0 -377
- data/src/supplemental/facets/reference.rb +0 -83
- data/src/supplemental/facets/tuple.rb +0 -282
- data/test/core-uncommon/array/test_median.rb +0 -12
- data/test/core-uncommon/array/test_percentile.rb +0 -12
- data/test/core-uncommon/module/test_cattr.rb +0 -53
- data/test/core-uncommon/module/test_prepend.rb +0 -26
- data/work/CHANGES +0 -2529
- data/work/NOTES.rdoc +0 -143
- data/work/bench/bench_load.rb +0 -56
- data/work/bench/enumerable/bench_collect.rb +0 -84
- data/work/bench/enumerable/bench_count.rb +0 -58
- data/work/bench/general/bench_calls.rb +0 -74
- data/work/bench/general/bench_includes.rb +0 -25
- data/work/bench/general/bench_methods.rb +0 -17
- data/work/bench/general/bench_pathname.rb +0 -24
- data/work/bench/general/bench_range.rb +0 -64
- data/work/bench/general/bench_return.rb +0 -56
- data/work/bench/general/bench_yeild.rb +0 -75
- data/work/bench/general/comment_loading/bench.rb +0 -46
- data/work/bench/general/comment_loading/comments_begin.rb +0 -109
- data/work/bench/general/comment_loading/comments_end.rb +0 -127
- data/work/bench/general/comment_loading/comments_none.rb +0 -1
- data/work/bench/general/comment_loading/comments_sharp.rb +0 -125
- data/work/bench/hash/bench_slice.rb +0 -62
- data/work/bench/integer/bench_factorial.rb +0 -31
- data/work/consider/aspects.rb +0 -254
- data/work/consider/attr.rb +0 -82
- data/work/consider/bin.rb +0 -26
- data/work/consider/blackmagic.rb +0 -103
- data/work/consider/bool_attr_accessor.rb +0 -414
- data/work/consider/duration.rb +0 -286
- data/work/consider/forwardable_chain.patch +0 -448
- data/work/consider/knowself.rb +0 -42
- data/work/consider/lib/core/facets.rb +0 -37
- data/work/consider/lib/core/facets/array/fetch.rb +0 -37
- data/work/consider/lib/core/facets/array/op_div.rb +0 -23
- data/work/consider/lib/core/facets/hash/having.rb +0 -75
- data/work/consider/lib/core/facets/string/trim.rb +0 -70
- data/work/consider/lib/more/facets/argv.rb +0 -47
- data/work/consider/lib/more/facets/extension.rb +0 -30
- data/work/consider/lib/more/facets/fixnum.rb +0 -55
- data/work/consider/lib/more/facets/forwardable_chain.patch +0 -448
- data/work/consider/lib/more/facets/gem.rb +0 -23
- data/work/consider/lib/more/facets/interface.rb +0 -230
- data/work/consider/lib/more/facets/plugin.rb +0 -153
- data/work/consider/lib/more/facets/recorder.rb +0 -54
- data/work/consider/lib/more/facets/tasksystem.rb +0 -350
- data/work/consider/mapcar.rb +0 -74
- data/work/consider/require_directory.rb +0 -4
- data/work/consider/set.rb +0 -47
- data/work/consider/succ.rb +0 -44
- data/work/consider/succ_case.rb +0 -39
- data/work/defunct/core/facets/array/combinations.rb +0 -33
- data/work/defunct/core/facets/array/combos.rb +0 -47
- data/work/defunct/core/facets/array/each_uniq_pair.rb +0 -43
- data/work/defunct/core/facets/array/permutation.rb +0 -75
- data/work/defunct/core/facets/array/to_path.rb +0 -14
- data/work/defunct/core/facets/class/initializer.rb +0 -60
- data/work/defunct/core/facets/class/prepend.rb +0 -52
- data/work/defunct/core/facets/class/remove_descendents.rb +0 -42
- data/work/defunct/core/facets/enumerable/cascade.rb +0 -28
- data/work/defunct/core/facets/enumerable/each.rb +0 -89
- data/work/defunct/core/facets/enumerable/to_hash.rb +0 -30
- data/work/defunct/core/facets/hash/access.rb +0 -146
- data/work/defunct/core/facets/hash/group_by_value.rb +0 -66
- data/work/defunct/core/facets/hash/normalize_keys.rb +0 -134
- data/work/defunct/core/facets/hash/op_div.rb +0 -11
- data/work/defunct/core/facets/hash/variablize_keys.rb +0 -48
- data/work/defunct/core/facets/kernel/__assign__.rb +0 -28
- data/work/defunct/core/facets/kernel/__real__.rb +0 -48
- data/work/defunct/core/facets/kernel/deep_clone.rb +0 -48
- data/work/defunct/core/facets/kernel/instance_assume.rb +0 -66
- data/work/defunct/core/facets/kernel/once.rb +0 -54
- data/work/defunct/core/facets/kernel/warn_with_line.rb +0 -29
- data/work/defunct/core/facets/method/curry.rb +0 -10
- data/work/defunct/core/facets/method/partial.rb +0 -10
- data/work/defunct/core/facets/module/attr_toggler.rb +0 -59
- data/work/defunct/core/facets/module/by_name.rb +0 -56
- data/work/defunct/core/facets/module/compare_on.rb +0 -35
- data/work/defunct/core/facets/module/equate_on.rb +0 -36
- data/work/defunct/core/facets/module/methodize.rb +0 -19
- data/work/defunct/core/facets/module/module_method.rb +0 -14
- data/work/defunct/core/facets/module/on_included.rb +0 -80
- data/work/defunct/core/facets/proc/bind.rb +0 -38
- data/work/defunct/core/facets/proc/to_h.rb +0 -22
- data/work/defunct/core/facets/string/camelcase.rb +0 -25
- data/work/defunct/core/facets/string/indexable.rb +0 -144
- data/work/defunct/core/facets/string/stackable.rb +0 -181
- data/work/defunct/core/facets/string/to_const.rb +0 -31
- data/work/defunct/core/facets/string/to_proc.rb +0 -52
- data/work/defunct/core/facets/symbol/pad.rb +0 -1
- data/work/defunct/core/facets/symbol/shadow.rb +0 -37
- data/work/defunct/core/facets/symbol/to_const.rb +0 -31
- data/work/defunct/more/facets/annotations.rb +0 -302
- data/work/defunct/more/facets/duration.rb +0 -540
- data/work/defunct/more/facets/logger.rb +0 -158
- data/work/defunct/more/facets/multiton.rb +0 -390
- data/work/defunct/more/facets/multiton2.rb +0 -237
- data/work/defunct/more/facets/uploadutils.rb +0 -466
- data/work/defunct/script/conflicts +0 -63
- data/work/defunct/script/methods +0 -49
- data/work/defunct/test/string/test_crypt.rb +0 -17
- data/work/defunct/test/string/test_indexable.rb +0 -68
- data/work/defunct/test/string/test_stackable.rb +0 -94
- data/work/defunct/test/string/test_stylize.rb +0 -52
- data/work/defunct/test/test_continuation.rb +0 -15
- data/work/defunct/test/test_instance_exec.rb +0 -44
- data/work/defunct/test/test_ioredirect.rb +0 -23
- data/work/defunct/test/test_prepend.rb +0 -19
- data/work/defunct/test/test_succ.rb +0 -35
- data/work/defunct/yard.assembly +0 -44
- data/work/sandbox/component.rb +0 -120
- data/work/sandbox/enumerator.rb +0 -12
- data/work/sandbox/enumx.rb +0 -116
- data/work/sandbox/express.rb +0 -48
- data/work/sandbox/multidispatch.rb +0 -236
- data/work/sandbox/multidispatch0.rb +0 -224
- data/work/sandbox/multiton2.rb +0 -590
- data/work/sandbox/namespace.rb +0 -169
- data/work/sandbox/safe-study/safe_extension.rb +0 -17
- data/work/sandbox/safe-study/safe_study.rb +0 -16
- data/work/sandbox/to_data.rb +0 -141
- data/work/sandbox/visit.rb +0 -62
- data/work/site/endorse.page +0 -65
- data/work/site/posts/2010-01-25-test_rails_with_facets.post +0 -151
- data/work/site/posts/enumargs.md +0 -30
- data/work/site/posts/tomslib.rb +0 -47
- data/work/site/posts/weblog.xml +0 -78
- data/work/site/sidebar.txt +0 -19
- data/work/todo/more/test_basicobject.rb +0 -34
- data/work/todo/more/test_fileutils_slice.rb +0 -88
- data/work/todo/more/test_fileutils_wc.rb +0 -53
- data/work/todo/more/test_fileutils_which.rb +0 -45
- data/work/todo/more/test_getoptlong.rb +0 -26
- data/work/todo/more/test_multiton.rb +0 -184
- data/work/trash/hook.rdoc +0 -49
- data/work/trash/menu.html +0 -71
- data/work/trash/site-jekyll/.htaccess +0 -1
- data/work/trash/site-jekyll/.rsync-filter +0 -7
- data/work/trash/site-jekyll/.till +0 -1
- data/work/trash/site-jekyll/_config.yml +0 -6
- data/work/trash/site-jekyll/_layouts/default.html +0 -101
- data/work/trash/site-jekyll/_layouts/post.html +0 -23
- data/work/trash/site-jekyll/_posts/2008-01-01-how-facets-was-born.markdown +0 -25
- data/work/trash/site-jekyll/_posts/2008-04-04-times-collect.markdown +0 -33
- data/work/trash/site-jekyll/_posts/2008-10-10-string-margin.markdown +0 -52
- data/work/trash/site-jekyll/_posts/2009-07-21-new-website.markdown +0 -16
- data/work/trash/site-jekyll/_posts/2009-08-22-release-2-7.markdown +0 -127
- data/work/trash/site-jekyll/_posts/2009-11-09-release-2-8.markdown +0 -58
- data/work/trash/site-jekyll/about.html +0 -79
- data/work/trash/site-jekyll/assets/scripts/hover.js +0 -14
- data/work/trash/site-jekyll/assets/scripts/rdocs.js +0 -28
- data/work/trash/site-jekyll/assets/styles/site.css +0 -317
- data/work/trash/site-jekyll/assets/styles/syntax.css +0 -60
- data/work/trash/site-jekyll/atom.xml +0 -23
- data/work/trash/site-jekyll/community.html +0 -72
- data/work/trash/site-jekyll/download.html +0 -84
- data/work/trash/site-jekyll/endorse.html +0 -64
- data/work/trash/site-jekyll/index.html +0 -17
- data/work/trash/site-jekyll/learn.html +0 -221
- data/work/trash/site-jekyll/source.html +0 -74
- data/work/trash/site/.htaccess +0 -1
- data/work/trash/site/.rsync-filter +0 -10
- data/work/trash/site/js/hover.js +0 -14
- data/work/trash/site/js/rdocs.js +0 -28
- data/work/trash/site/quick.html +0 -250
- data/work/trash/site/splash.html +0 -44
- data/work/trash/task/count +0 -48
- data/work/trash/task/load +0 -40
- data/work/trash/task/publish +0 -83
- data/work/trash/task/tag +0 -26
- data/work/trash/test_inject.rb +0 -17
data/work/consider/duration.rb
DELETED
@@ -1,286 +0,0 @@
|
|
1
|
-
class Duration
|
2
|
-
include Comparable
|
3
|
-
|
4
|
-
SECOND = 1
|
5
|
-
MINUTE = 60 * SECOND
|
6
|
-
HOUR = 60 * MINUTE
|
7
|
-
DAY = 24 * HOUR
|
8
|
-
WEEK = 7 * DAY
|
9
|
-
YEAR = 365 * DAY
|
10
|
-
|
11
|
-
SEGMENTS = %w{years weeks days hours minutes seconds}.collect{ |s| s.to_sym }
|
12
|
-
|
13
|
-
#
|
14
|
-
def self.[](seconds, *segments)
|
15
|
-
new(seconds, *segments)
|
16
|
-
end
|
17
|
-
|
18
|
-
#
|
19
|
-
def initialize(seconds=0, *segments)
|
20
|
-
@seconds = seconds.to_i
|
21
|
-
reset_segments(*segments)
|
22
|
-
end
|
23
|
-
|
24
|
-
#
|
25
|
-
def segments; @segments; end
|
26
|
-
|
27
|
-
#
|
28
|
-
def reset_segments(*segments)
|
29
|
-
case segments.size
|
30
|
-
when 0
|
31
|
-
@segments = [:days, :hours, :minutes, :seconds]
|
32
|
-
when 1
|
33
|
-
case segments = segments[0]
|
34
|
-
when Array
|
35
|
-
@segments = segments.collect{ |p| (p.to_s.downcase.chomp('s') + 's').to_sym }
|
36
|
-
raise ArgumentError unless @segments.all?{ |s| SEGMENTS.include?(s) }
|
37
|
-
else
|
38
|
-
f = SEGMENTS.index(segments)
|
39
|
-
@segments = SEGMENTS[f..0]
|
40
|
-
end
|
41
|
-
when 2
|
42
|
-
f = SEGMENTS.index(segments[0])
|
43
|
-
t = SEGMENTS.index(segments[1])
|
44
|
-
@segments = SEGMENTS[f..t]
|
45
|
-
else
|
46
|
-
raise ArgumentError
|
47
|
-
end
|
48
|
-
end
|
49
|
-
|
50
|
-
def inspect
|
51
|
-
h = to_h
|
52
|
-
segments.reverse.collect do |l|
|
53
|
-
"#{h[l.to_sym]} #{l}"
|
54
|
-
end.join(' ')
|
55
|
-
end
|
56
|
-
|
57
|
-
def to_i ; @seconds.to_i ; end
|
58
|
-
def to_f ; @seconds.to_f ; end
|
59
|
-
|
60
|
-
public
|
61
|
-
|
62
|
-
def to_a
|
63
|
-
a, s = [], @seconds
|
64
|
-
a[5], s = *s.divmod(YEAR) if @segments.include?(:years)
|
65
|
-
a[4], s = *s.divmod(WEEK) if @segments.include?(:weeks)
|
66
|
-
a[3], s = *s.divmod(DAY) if @segments.include?(:days)
|
67
|
-
a[2], s = *s.divmod(HOUR) if @segments.include?(:hours)
|
68
|
-
a[1], s = *s.divmod(MINUTE) if @segments.include?(:minutes)
|
69
|
-
a[0], s = *s.divmod(SECOND) if @segments.include?(:seconds)
|
70
|
-
a.compact.reverse
|
71
|
-
end
|
72
|
-
|
73
|
-
#
|
74
|
-
def to_h
|
75
|
-
h, s = {}, @seconds
|
76
|
-
h[:years], s = *s.divmod(YEAR) if @segments.include?(:years)
|
77
|
-
h[:weeks], s = *s.divmod(WEEK) if @segments.include?(:weeks)
|
78
|
-
h[:days], s = *s.divmod(DAY) if @segments.include?(:days)
|
79
|
-
h[:hours], s = *s.divmod(HOUR) if @segments.include?(:hours)
|
80
|
-
h[:minutes], s = *s.divmod(MINUTE) if @segments.include?(:minutes)
|
81
|
-
h[:seconds], s = *s.divmod(SECOND) if @segments.include?(:seconds)
|
82
|
-
h
|
83
|
-
end
|
84
|
-
|
85
|
-
def to_s
|
86
|
-
h = to_h
|
87
|
-
segments.reverse.collect do |l|
|
88
|
-
"#{h[l.to_sym]} #{l}"
|
89
|
-
end.join(' ')
|
90
|
-
end
|
91
|
-
|
92
|
-
# Returns true if <tt>other</tt> is also a Duration instance with the
|
93
|
-
# same <tt>value</tt>, or if <tt>other == value</tt>.
|
94
|
-
def ==(other)
|
95
|
-
if Duration === other
|
96
|
-
other.seconds == seconds
|
97
|
-
else
|
98
|
-
other == seconds
|
99
|
-
end
|
100
|
-
end
|
101
|
-
|
102
|
-
def <=>(other)
|
103
|
-
@seconds <=> other.to_i
|
104
|
-
end
|
105
|
-
|
106
|
-
#def is_a?(klass) #:nodoc:
|
107
|
-
# klass == self.class
|
108
|
-
#end
|
109
|
-
|
110
|
-
#def self.===(other) #:nodoc:
|
111
|
-
# other.is_a?(Duration) rescue super
|
112
|
-
#end
|
113
|
-
|
114
|
-
def years ; to_h[:years] ; end
|
115
|
-
def weeks ; to_h[:weeks] ; end
|
116
|
-
def days ; to_h[:days] ; end
|
117
|
-
def hours ; to_h[:hours] ; end
|
118
|
-
def minutes ; to_h[:minutes] ; end
|
119
|
-
def seconds ; to_h[:seconds] ; end
|
120
|
-
|
121
|
-
def total ; seconds ; end
|
122
|
-
|
123
|
-
def +(other)
|
124
|
-
self.class.new(@seconds + other.to_i, segments)
|
125
|
-
end
|
126
|
-
|
127
|
-
def -(other)
|
128
|
-
self.class.new(@seconds - other.to_i, segments)
|
129
|
-
end
|
130
|
-
|
131
|
-
def *(other)
|
132
|
-
self.class.new(@seconds * other.to_i, segments)
|
133
|
-
end
|
134
|
-
|
135
|
-
def /(other)
|
136
|
-
self.class.new(@seconds / other.to_i, segments)
|
137
|
-
end
|
138
|
-
|
139
|
-
#
|
140
|
-
def segmented(*segments)
|
141
|
-
self.class.new(@seconds, segments)
|
142
|
-
#segments = segments.collect{ |p| p.to_s.downcase.chomp('s') }
|
143
|
-
#y,w,d,h,m,s = nil,nil,nil,nil,nil,nil
|
144
|
-
#x = @seconds
|
145
|
-
#y, x = *x.divmod(YEAR) if segments.include?('year')
|
146
|
-
#w, x = *x.divmod(WEEK) if segments.include?('week')
|
147
|
-
#d, x = *x.divmod(DAY) if segments.include?('day')
|
148
|
-
#h, x = *x.divmod(HOUR) if segments.include?('hour')
|
149
|
-
#m, x = *x.divmod(MINUTE) if segments.include?('minute')
|
150
|
-
#s = x if segments.include?('second')
|
151
|
-
#[y, w, d, h, m, s].compact
|
152
|
-
end
|
153
|
-
|
154
|
-
# Format duration.
|
155
|
-
#
|
156
|
-
# *Identifiers*
|
157
|
-
#
|
158
|
-
# %w -- Number of weeks
|
159
|
-
# %d -- Number of days
|
160
|
-
# %h -- Number of hours
|
161
|
-
# %m -- Number of minutes
|
162
|
-
# %s -- Number of seconds
|
163
|
-
# %t -- Total number of seconds
|
164
|
-
# %x -- Duration#to_s
|
165
|
-
# %% -- Literal `%' character
|
166
|
-
#
|
167
|
-
# *Example*
|
168
|
-
#
|
169
|
-
# d = Duration.new(:weeks => 10, :days => 7)
|
170
|
-
# => #<Duration: 11 weeks>
|
171
|
-
# d.strftime("It's been %w weeks!")
|
172
|
-
# => "It's been 11 weeks!"
|
173
|
-
#
|
174
|
-
def strftime(fmt)
|
175
|
-
h = to_h
|
176
|
-
hx = {
|
177
|
-
'y' => h[:years] ,
|
178
|
-
'w' => h[:weeks] ,
|
179
|
-
'd' => h[:days] ,
|
180
|
-
'h' => h[:hours] ,
|
181
|
-
'm' => h[:minutes],
|
182
|
-
's' => h[:seconds],
|
183
|
-
't' => total,
|
184
|
-
'x' => to_s
|
185
|
-
}
|
186
|
-
fmt.gsub(/%?%(w|d|h|m|s|t|x)/) do |match|
|
187
|
-
hx[match[1..1]]
|
188
|
-
end.gsub('%%', '%')
|
189
|
-
end
|
190
|
-
|
191
|
-
#
|
192
|
-
def -@ #:nodoc:
|
193
|
-
self.class.new(-@seconds)
|
194
|
-
end
|
195
|
-
|
196
|
-
#
|
197
|
-
def +@ #:nodoc:
|
198
|
-
self.class.new(+@seconds)
|
199
|
-
end
|
200
|
-
|
201
|
-
#
|
202
|
-
# Need to wrap back to numeric methods, maybe use method_missing?
|
203
|
-
#
|
204
|
-
|
205
|
-
#
|
206
|
-
def before(time)
|
207
|
-
@seconds.before(time)
|
208
|
-
end
|
209
|
-
|
210
|
-
#
|
211
|
-
def after(time)
|
212
|
-
@seconds.after(time)
|
213
|
-
end
|
214
|
-
|
215
|
-
|
216
|
-
# = Numeric Extensions for Durations
|
217
|
-
#
|
218
|
-
module Numeric
|
219
|
-
|
220
|
-
# Enables the use of time calculations and declarations,
|
221
|
-
# like 45.minutes + 2.hours + 4.years. The base unit for
|
222
|
-
# all of these Numeric time methods is seconds.
|
223
|
-
def seconds ; Duration[self] ; end
|
224
|
-
alias_method :second, :seconds
|
225
|
-
|
226
|
-
# Converts minutes into seconds.
|
227
|
-
def minutes ; Duration[self * 60] ; end
|
228
|
-
alias_method :minute, :minutes
|
229
|
-
|
230
|
-
# Converts hours into seconds.
|
231
|
-
def hours ; Duration[self * 3600] ; end
|
232
|
-
alias_method :hour, :hours
|
233
|
-
#def as_hours ; self / 60.minutes ; end
|
234
|
-
|
235
|
-
# Converts days into seconds.
|
236
|
-
def days ; Duration[self * 86400] ; end
|
237
|
-
alias_method :day, :days
|
238
|
-
|
239
|
-
# Converts weeks into seconds.
|
240
|
-
def weeks ; Duration[self * 604800] ; end
|
241
|
-
alias_method :week, :weeks
|
242
|
-
|
243
|
-
# Converts fortnights into seconds.
|
244
|
-
# (A fortnight is 2 weeks)
|
245
|
-
def fortnights ; Duration[self * 1209600] ; end
|
246
|
-
alias_method :fortnight, :fortnights
|
247
|
-
|
248
|
-
# Converts months into seconds.
|
249
|
-
# WARNING: This is not exact as it assumes 30 days to a month.
|
250
|
-
def months ; Duration[self * 30 * 86400] ; end
|
251
|
-
alias_method :month, :months
|
252
|
-
|
253
|
-
# Converts years into seconds.
|
254
|
-
# WARNING: This is not exact as it assumes 365 days to a year.
|
255
|
-
# ie. It doesn not account for leap years.
|
256
|
-
def years ; Duration[self * 365 * 86400, :years] ; end
|
257
|
-
alias_method :year, :years
|
258
|
-
|
259
|
-
end
|
260
|
-
|
261
|
-
# Time#duration has been added to convert the UNIX timestamp into a Duration.
|
262
|
-
# See Time#duration for an example.
|
263
|
-
#
|
264
|
-
module Time
|
265
|
-
# Create a Duration object from the UNIX timestamp.
|
266
|
-
#
|
267
|
-
# *Example*
|
268
|
-
#
|
269
|
-
# Time.now.duration
|
270
|
-
# => #<Duration: 1898 weeks, 6 days, 1 hour, 12 minutes and 1 second>
|
271
|
-
#
|
272
|
-
def duration
|
273
|
-
Duration[to_i]
|
274
|
-
end
|
275
|
-
end
|
276
|
-
|
277
|
-
end
|
278
|
-
|
279
|
-
class Numeric #:nodoc:
|
280
|
-
include Duration::Numeric
|
281
|
-
end
|
282
|
-
|
283
|
-
class Time #:nodoc:
|
284
|
-
include Duration::Time
|
285
|
-
end
|
286
|
-
|
@@ -1,448 +0,0 @@
|
|
1
|
-
Index: lib/more/facets/forwardable_chain.rb
|
2
|
-
===================================================================
|
3
|
-
--- lib/more/facets/forwardable_chain.rb (revision 0)
|
4
|
-
+++ lib/more/facets/forwardable_chain.rb (revision 0)
|
5
|
-
@@ -0,0 +1,162 @@
|
6
|
-
+# The ForwardableChain module is a superset of the capabilities of Forwardable.
|
7
|
-
+# It provides delegation of specified methods to a chain of designated objects,
|
8
|
-
+# using the class method _def_delegator_chain_. This class method becomes
|
9
|
-
+# available to your module when ForwardableChain is included in your module as
|
10
|
-
+# in the example below. (Note: *include* rather than _extend_.) Your module will
|
11
|
-
+# reveal ForwardableChain to be in its type hierarchy (see Module#ancestors),
|
12
|
-
+# which can be useful for debugging.
|
13
|
-
+#
|
14
|
-
+# The pattern implemented by ForwardableChain is useful in creating presenter
|
15
|
-
+# classes and facade classes whose purpose is to abstract away the complexity of
|
16
|
-
+# working with graphs of objects.
|
17
|
-
+#
|
18
|
-
+# For example, say you have a class _AccountFacade_ which has attributes
|
19
|
-
+# _current_ and _legacy_ representing two distinct but analogous system
|
20
|
-
+# interfaces. You can use ForwardableChain to define methods of AccountFacade
|
21
|
-
+# which call methods deep in the object graph of _current_ and _legacy_.
|
22
|
-
+#
|
23
|
-
+# class AccountPresenter
|
24
|
-
+#
|
25
|
-
+# include ForwardableChain
|
26
|
-
+#
|
27
|
-
+# # Define a #name method that looks first in #current and then in
|
28
|
-
+# # #legacy for an account name -- that is, #current overrides #legacy.
|
29
|
-
+# def_delegator_chain :name, {:current => {:account => :name}},
|
30
|
-
+# {:legacy => {:account => {:name_info => :acct_name}}}
|
31
|
-
+#
|
32
|
-
+# # Define a #primary_ssn method that returns
|
33
|
-
+# # current.account.primary_holder.ssn unless any of the intermediate return
|
34
|
-
+# # values are nil.
|
35
|
-
+# def_delegator_chain :primary_ssn, :current => {:account => {:primary_holder => :ssn}}
|
36
|
-
+#
|
37
|
-
+# # Define an #aggregate_balance method that returns current.grand_total
|
38
|
-
+# # unless #current is nil.
|
39
|
-
+# def_delegator_chain :aggregate_balance, :current => :grand_total
|
40
|
-
+#
|
41
|
-
+# end
|
42
|
-
+#
|
43
|
-
+# The following is the sequence of method calls triggered by a call to
|
44
|
-
+# <em>AccountPresenter#name</em> defined above:
|
45
|
-
+#
|
46
|
-
+# - <em>name</em> -- which calls ...
|
47
|
-
+# - <em>current</em> -- if it returns +nil+ then _legacy_ is called, otherwise ...
|
48
|
-
+# - <em>current.account</em> -- on which, unless it returns +nil+, is called ...
|
49
|
-
+# - <em>current.account.name</em> -- if it returns +nil+, then is called ...
|
50
|
-
+# - <em>legacy</em> -- unless it returns +nil+ ...
|
51
|
-
+# - <em>legacy.account</em> -- on which, unless it returns +nil+, is called ...
|
52
|
-
+# - <em>legacy.account.name_info</em> -- on which, unless it returns +nil+, is called ...
|
53
|
-
+# - <em>legacy.account.name_info.acct_name</em>
|
54
|
-
+#
|
55
|
-
+# Methods with arguments are also supported, but be sure that all the methods in
|
56
|
-
+# the chain can receive the same arguments, or else an ArgumentError will occur
|
57
|
-
+# when you call your delegator method.
|
58
|
-
+#
|
59
|
-
+# You can also use instance variables as links in a delegate chain as follows.
|
60
|
-
+#
|
61
|
-
+# class AccountPresenter
|
62
|
-
+#
|
63
|
-
+# include ForwardableChain
|
64
|
-
+#
|
65
|
-
+# # Define an #aggregate_balance method that returns the @grand_total
|
66
|
-
+# # variable of @current unless @current is nil.
|
67
|
-
+# def_delegator_chain :aggregate_balance, :@current => :@grand_total
|
68
|
-
+#
|
69
|
-
+# end
|
70
|
-
+#
|
71
|
-
+# Instance variables and methods both can appear in a chain. As you might
|
72
|
-
+# expect, arguments are ignored when accessing instance variables.
|
73
|
-
+module ForwardableChain
|
74
|
-
+
|
75
|
-
+ module ClassMethods
|
76
|
-
+
|
77
|
-
+ # Alias for #def_instance_delegator_chain.
|
78
|
-
+ def def_delegator_chain(method, *delegates)
|
79
|
-
+ def_instance_delegator_chain method, *delegates
|
80
|
-
+ end
|
81
|
-
+
|
82
|
-
+ # Defines a method _method_ which delegates to a series of method calls
|
83
|
-
+ # described by one or more Hash objects provided as _delegates_.
|
84
|
-
+ #
|
85
|
-
+ # See the examples at ForwardableChain.
|
86
|
-
+ def def_instance_delegator_chain(method, *delegates)
|
87
|
-
+ delegates.each do |delegate|
|
88
|
-
+ DelegateExtension.extend_recursive delegate
|
89
|
-
+ unless delegate.valid_recursive?
|
90
|
-
+ raise ArgumentError,
|
91
|
-
+ 'expected the name of a new method to be defined, followed ' +
|
92
|
-
+ 'by an argument array of zero or more hashes -- possibly ' +
|
93
|
-
+ 'nested, each containing a single key -- representing a ' +
|
94
|
-
+ 'chain of method calls and/or instance variables used to ' +
|
95
|
-
+ 'supply the return value of the method'
|
96
|
-
+ end
|
97
|
-
+ end
|
98
|
-
+ define_method(method) do |*args|
|
99
|
-
+ result = nil
|
100
|
-
+ delegates.each do |delegate|
|
101
|
-
+ unless (value = delegate.call_recursive(self, *args)).nil?
|
102
|
-
+ result = value
|
103
|
-
+ break
|
104
|
-
+ end
|
105
|
-
+ end
|
106
|
-
+ result
|
107
|
-
+ end
|
108
|
-
+ end
|
109
|
-
+
|
110
|
-
+ end
|
111
|
-
+
|
112
|
-
+ module DelegateExtension #:nodoc:
|
113
|
-
+
|
114
|
-
+ class << self
|
115
|
-
+
|
116
|
-
+ def extend_recursive(hash)
|
117
|
-
+ return false unless hash.kind_of?(Hash)
|
118
|
-
+ hash.extend self
|
119
|
-
+ hash.each_pair { |key, value| extend_recursive value }
|
120
|
-
+ true
|
121
|
-
+ end
|
122
|
-
+
|
123
|
-
+ def send_message_or_get_instance_variable(receiver,
|
124
|
-
+ message_or_instance_variable,
|
125
|
-
+ *args)
|
126
|
-
+ if message_or_instance_variable.to_s[0..0] == '@'
|
127
|
-
+ receiver.instance_variable_get message_or_instance_variable
|
128
|
-
+ else
|
129
|
-
+ receiver.send message_or_instance_variable, *args
|
130
|
-
+ end
|
131
|
-
+ end
|
132
|
-
+
|
133
|
-
+ end
|
134
|
-
+
|
135
|
-
+ def call_recursive(receiver, *args)
|
136
|
-
+ next_receiver_name = keys.first
|
137
|
-
+ next_receiver = DelegateExtension.send_message_or_get_instance_variable(receiver,
|
138
|
-
+ next_receiver_name,
|
139
|
-
+ *args)
|
140
|
-
+ return nil if next_receiver.nil?
|
141
|
-
+ next_message_or_delegate = self[next_receiver_name]
|
142
|
-
+ if next_message_or_delegate.respond_to?(:call_recursive)
|
143
|
-
+ return next_message_or_delegate.call_recursive(next_receiver, *args)
|
144
|
-
+ end
|
145
|
-
+ DelegateExtension.send_message_or_get_instance_variable next_receiver,
|
146
|
-
+ next_message_or_delegate,
|
147
|
-
+ *args
|
148
|
-
+ end
|
149
|
-
+
|
150
|
-
+ def valid_recursive?
|
151
|
-
+ return false unless (length == 1)
|
152
|
-
+ next_receiver = self[keys.first]
|
153
|
-
+ return true if next_receiver.kind_of?(Symbol)
|
154
|
-
+ if next_receiver.respond_to?(:valid_recursive?)
|
155
|
-
+ return next_receiver.valid_recursive?
|
156
|
-
+ end
|
157
|
-
+ false
|
158
|
-
+ end
|
159
|
-
+
|
160
|
-
+ end
|
161
|
-
+
|
162
|
-
+ # Extends _other_module_ with the instance methods of ClassMethods.
|
163
|
-
+ def self.included(other_module)
|
164
|
-
+ other_module.extend ClassMethods
|
165
|
-
+ end
|
166
|
-
+
|
167
|
-
+end
|
168
|
-
Index: test/more/test_forwardable_chain.rb
|
169
|
-
===================================================================
|
170
|
-
--- test/more/test_forwardable_chain.rb (revision 0)
|
171
|
-
+++ test/more/test_forwardable_chain.rb (revision 0)
|
172
|
-
@@ -0,0 +1,276 @@
|
173
|
-
+require 'test/unit'
|
174
|
-
+require 'rubygems'
|
175
|
-
+require 'mocha'
|
176
|
-
+require 'facets/forwardable_chain'
|
177
|
-
+
|
178
|
-
+module ForwardableChainTest #:nodoc: all
|
179
|
-
+
|
180
|
-
+ class MethodWithNoDelegates < Test::Unit::TestCase
|
181
|
-
+
|
182
|
-
+ class Foo
|
183
|
-
+
|
184
|
-
+ include ForwardableChain
|
185
|
-
+
|
186
|
-
+ def_instance_delegator_chain :no_delegates
|
187
|
-
+
|
188
|
-
+ end
|
189
|
-
+
|
190
|
-
+ def test_should_return_nil
|
191
|
-
+ assert_nil Foo.new.no_delegates
|
192
|
-
+ end
|
193
|
-
+
|
194
|
-
+ end
|
195
|
-
+
|
196
|
-
+ class MethodWithOneDelegateThatIsInvalidBecauseItContainsMoreThanOneKeyValuePair < Test::Unit::TestCase
|
197
|
-
+
|
198
|
-
+ def test_should_raise_argument_error_from_definition
|
199
|
-
+ assert_raise(ArgumentError) do
|
200
|
-
+ self.class.class_eval <<-end_class_eval
|
201
|
-
+ class Foo
|
202
|
-
+ include ForwardableChain
|
203
|
-
+ def_instance_delegator_chain :one_invalid_delegate, :bar => :baz,
|
204
|
-
+ :bat => :pwop
|
205
|
-
+ end
|
206
|
-
+ end_class_eval
|
207
|
-
+ end
|
208
|
-
+ end
|
209
|
-
+
|
210
|
-
+ end
|
211
|
-
+
|
212
|
-
+ class MethodWithOneSimpleMethodDelegate < Test::Unit::TestCase
|
213
|
-
+
|
214
|
-
+ class Foo
|
215
|
-
+
|
216
|
-
+ include ForwardableChain
|
217
|
-
+
|
218
|
-
+ def_instance_delegator_chain :one_simple_delegate, :bar => :baz
|
219
|
-
+
|
220
|
-
+ end
|
221
|
-
+
|
222
|
-
+ def test_should_call_first_delegate_with_no_args
|
223
|
-
+ foo = Foo.new
|
224
|
-
+
|
225
|
-
+ mock_bar = mock
|
226
|
-
+ mock_bar.expects(:baz).with().returns 'baz'
|
227
|
-
+ foo.expects(:bar).with().returns mock_bar
|
228
|
-
+
|
229
|
-
+ assert_equal 'baz', foo.one_simple_delegate
|
230
|
-
+ end
|
231
|
-
+
|
232
|
-
+ end
|
233
|
-
+
|
234
|
-
+ class MethodWithOneSimpleVariableDelegate < Test::Unit::TestCase
|
235
|
-
+
|
236
|
-
+ class Foo
|
237
|
-
+
|
238
|
-
+ include ForwardableChain
|
239
|
-
+
|
240
|
-
+ def_instance_delegator_chain :one_simple_delegate, :@bar => :@baz
|
241
|
-
+
|
242
|
-
+ end
|
243
|
-
+
|
244
|
-
+ def test_should_access_first_delegate
|
245
|
-
+ foo = Foo.new
|
246
|
-
+
|
247
|
-
+ mock_bar = mock
|
248
|
-
+ mock_bar.expects(:instance_variable_get).with(:@baz).returns 'baz'
|
249
|
-
+ foo.expects(:instance_variable_get).with(:@bar).returns mock_bar
|
250
|
-
+
|
251
|
-
+ assert_equal 'baz', foo.one_simple_delegate
|
252
|
-
+ end
|
253
|
-
+
|
254
|
-
+ end
|
255
|
-
+
|
256
|
-
+ class MethodWithOneComplexMethodDelegate < Test::Unit::TestCase
|
257
|
-
+
|
258
|
-
+ class Foo
|
259
|
-
+
|
260
|
-
+ include ForwardableChain
|
261
|
-
+
|
262
|
-
+ def_instance_delegator_chain :one_complex_delegate, :bar => {:baz => :bat}
|
263
|
-
+
|
264
|
-
+ end
|
265
|
-
+
|
266
|
-
+ def setup
|
267
|
-
+ @foo = Foo.new
|
268
|
-
+ end
|
269
|
-
+
|
270
|
-
+ def test_should_call_delegate_with_no_arguments
|
271
|
-
+ mock_baz = mock
|
272
|
-
+ mock_baz.expects(:bat).with().returns 'bat'
|
273
|
-
+ mock_bar = mock
|
274
|
-
+ mock_bar.expects(:baz).with().returns mock_baz
|
275
|
-
+ @foo.expects(:bar).with().returns mock_bar
|
276
|
-
+
|
277
|
-
+ assert_equal 'bat', @foo.one_complex_delegate
|
278
|
-
+ end
|
279
|
-
+
|
280
|
-
+ def test_should_call_delegate_with_one_argument
|
281
|
-
+ mock_baz = mock
|
282
|
-
+ mock_baz.expects(:bat).with(:an_arg).returns 'bat'
|
283
|
-
+ mock_bar = mock
|
284
|
-
+ mock_bar.expects(:baz).with(:an_arg).returns mock_baz
|
285
|
-
+ @foo.expects(:bar).with(:an_arg).returns mock_bar
|
286
|
-
+
|
287
|
-
+ assert_equal 'bat', @foo.one_complex_delegate(:an_arg)
|
288
|
-
+ end
|
289
|
-
+
|
290
|
-
+ def test_should_call_delegate_with_no_arguments_and_return_nil_if_delegate_has_nil_intermediate_value
|
291
|
-
+ mock_bar = mock
|
292
|
-
+ mock_bar.expects(:baz).with().returns nil
|
293
|
-
+ @foo.expects(:bar).with().returns mock_bar
|
294
|
-
+
|
295
|
-
+ assert_nil @foo.one_complex_delegate
|
296
|
-
+ end
|
297
|
-
+
|
298
|
-
+ def test_should_call_delegate_with_one_argument_and_return_nil_if_delegate_has_nil_intermediate_value
|
299
|
-
+ mock_bar = mock
|
300
|
-
+ mock_bar.expects(:baz).with(:an_arg).returns nil
|
301
|
-
+ @foo.expects(:bar).with(:an_arg).returns mock_bar
|
302
|
-
+
|
303
|
-
+ assert_nil @foo.one_complex_delegate(:an_arg)
|
304
|
-
+ end
|
305
|
-
+
|
306
|
-
+ end
|
307
|
-
+
|
308
|
-
+ class MethodWithOneComplexVariableDelegate < Test::Unit::TestCase
|
309
|
-
+
|
310
|
-
+ class Foo
|
311
|
-
+
|
312
|
-
+ include ForwardableChain
|
313
|
-
+
|
314
|
-
+ def_instance_delegator_chain :one_complex_delegate, :@bar => {:@baz => :@bat}
|
315
|
-
+
|
316
|
-
+ end
|
317
|
-
+
|
318
|
-
+ def setup
|
319
|
-
+ @foo = Foo.new
|
320
|
-
+ end
|
321
|
-
+
|
322
|
-
+ def test_should_access_delegate
|
323
|
-
+ mock_baz = mock
|
324
|
-
+ mock_baz.expects(:instance_variable_get).with(:@bat).returns 'bat'
|
325
|
-
+ mock_bar = mock
|
326
|
-
+ mock_bar.expects(:instance_variable_get).with(:@baz).returns mock_baz
|
327
|
-
+ @foo.expects(:instance_variable_get).with(:@bar).returns mock_bar
|
328
|
-
+
|
329
|
-
+ assert_equal 'bat', @foo.one_complex_delegate
|
330
|
-
+ end
|
331
|
-
+
|
332
|
-
+ def test_should_access_delegate_and_return_nil_if_delegate_has_nil_intermediate_value
|
333
|
-
+ mock_bar = mock
|
334
|
-
+ mock_bar.expects(:instance_variable_get).with(:@baz).returns nil
|
335
|
-
+ @foo.expects(:instance_variable_get).with(:@bar).returns mock_bar
|
336
|
-
+
|
337
|
-
+ assert_nil @foo.one_complex_delegate
|
338
|
-
+ end
|
339
|
-
+
|
340
|
-
+ end
|
341
|
-
+
|
342
|
-
+ class MethodWithTwoJaggedComplexMethodDelegates < Test::Unit::TestCase
|
343
|
-
+
|
344
|
-
+ class Foo
|
345
|
-
+
|
346
|
-
+ include ForwardableChain
|
347
|
-
+
|
348
|
-
+ def_instance_delegator_chain :two_jagged_complex_delegates, {:bar => {:baz => :bat}},
|
349
|
-
+ {:pwop => {:ding => {:dit => :dat}}}
|
350
|
-
+
|
351
|
-
+ end
|
352
|
-
+
|
353
|
-
+ def setup
|
354
|
-
+ @foo = Foo.new
|
355
|
-
+ end
|
356
|
-
+
|
357
|
-
+ def test_should_call_only_first_delegate_with_no_arguments
|
358
|
-
+ mock_baz = mock
|
359
|
-
+ mock_baz.expects(:bat).with().returns 'bat'
|
360
|
-
+ mock_bar = mock
|
361
|
-
+ mock_bar.expects(:baz).with().returns mock_baz
|
362
|
-
+ @foo.expects(:bar).with().returns mock_bar
|
363
|
-
+
|
364
|
-
+ assert_equal 'bat', @foo.two_jagged_complex_delegates
|
365
|
-
+ end
|
366
|
-
+
|
367
|
-
+ def test_should_call_only_first_delegate_with_one_argument
|
368
|
-
+ mock_baz = mock
|
369
|
-
+ mock_baz.expects(:bat).with(:an_arg).returns 'bat'
|
370
|
-
+ mock_bar = mock
|
371
|
-
+ mock_bar.expects(:baz).with(:an_arg).returns mock_baz
|
372
|
-
+ @foo.expects(:bar).with(:an_arg).returns mock_bar
|
373
|
-
+
|
374
|
-
+ assert_equal 'bat', @foo.two_jagged_complex_delegates(:an_arg)
|
375
|
-
+ end
|
376
|
-
+
|
377
|
-
+ def test_should_call_both_delegates_with_no_arguments_and_return_nil_if_both_delegates_have_nil_intermediate_values
|
378
|
-
+ mock_bar = mock
|
379
|
-
+ mock_bar.expects(:baz).with().returns nil
|
380
|
-
+ @foo.expects(:bar).with().returns mock_bar
|
381
|
-
+
|
382
|
-
+ mock_ding = mock
|
383
|
-
+ mock_ding.expects(:dit).with().returns nil
|
384
|
-
+ mock_pwop = mock
|
385
|
-
+ mock_pwop.expects(:ding).with().returns mock_ding
|
386
|
-
+ @foo.expects(:pwop).with().returns mock_pwop
|
387
|
-
+
|
388
|
-
+ assert_nil @foo.two_jagged_complex_delegates
|
389
|
-
+ end
|
390
|
-
+
|
391
|
-
+ def test_should_call_both_delegates_with_one_argument_and_return_nil_if_both_delegates_have_nil_intermediate_values
|
392
|
-
+ mock_bar = mock
|
393
|
-
+ mock_bar.expects(:baz).with(:an_arg).returns nil
|
394
|
-
+ @foo.expects(:bar).with(:an_arg).returns mock_bar
|
395
|
-
+
|
396
|
-
+ mock_ding = mock
|
397
|
-
+ mock_ding.expects(:dit).with(:an_arg).returns nil
|
398
|
-
+ mock_pwop = mock
|
399
|
-
+ mock_pwop.expects(:ding).with(:an_arg).returns mock_ding
|
400
|
-
+ @foo.expects(:pwop).with(:an_arg).returns mock_pwop
|
401
|
-
+
|
402
|
-
+ assert_nil @foo.two_jagged_complex_delegates(:an_arg)
|
403
|
-
+ end
|
404
|
-
+
|
405
|
-
+ end
|
406
|
-
+
|
407
|
-
+ class MethodWithTwoJaggedComplexVariableDelegates < Test::Unit::TestCase
|
408
|
-
+
|
409
|
-
+ class Foo
|
410
|
-
+
|
411
|
-
+ include ForwardableChain
|
412
|
-
+
|
413
|
-
+ def_instance_delegator_chain :two_jagged_complex_delegates, {:@bar => {:@baz => :@bat}},
|
414
|
-
+ {:@pwop => {:@ding => {:@dit => :@dat}}}
|
415
|
-
+
|
416
|
-
+ end
|
417
|
-
+
|
418
|
-
+ def setup
|
419
|
-
+ @foo = Foo.new
|
420
|
-
+ end
|
421
|
-
+
|
422
|
-
+ def test_should_access_only_first_delegate
|
423
|
-
+ mock_baz = mock
|
424
|
-
+ mock_baz.expects(:instance_variable_get).with(:@bat).returns 'bat'
|
425
|
-
+ mock_bar = mock
|
426
|
-
+ mock_bar.expects(:instance_variable_get).with(:@baz).returns mock_baz
|
427
|
-
+ @foo.expects(:instance_variable_get).with(:@bar).returns mock_bar
|
428
|
-
+
|
429
|
-
+ assert_equal 'bat', @foo.two_jagged_complex_delegates
|
430
|
-
+ end
|
431
|
-
+
|
432
|
-
+ def test_should_access_both_delegates_and_return_nil_if_both_delegates_have_nil_intermediate_values
|
433
|
-
+ mock_bar = mock
|
434
|
-
+ mock_bar.expects(:instance_variable_get).with(:@baz).returns nil
|
435
|
-
+ @foo.expects(:instance_variable_get).with(:@bar).returns mock_bar
|
436
|
-
+
|
437
|
-
+ mock_ding = mock
|
438
|
-
+ mock_ding.expects(:instance_variable_get).with(:@dit).returns nil
|
439
|
-
+ mock_pwop = mock
|
440
|
-
+ mock_pwop.expects(:instance_variable_get).with(:@ding).returns mock_ding
|
441
|
-
+ @foo.expects(:instance_variable_get).with(:@pwop).returns mock_pwop
|
442
|
-
+
|
443
|
-
+ assert_nil @foo.two_jagged_complex_delegates
|
444
|
-
+ end
|
445
|
-
+
|
446
|
-
+ end
|
447
|
-
+
|
448
|
-
+end
|