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/attr.rb
DELETED
@@ -1,82 +0,0 @@
|
|
1
|
-
class Module
|
2
|
-
|
3
|
-
# Create a toggle attribute. This creates two methods for
|
4
|
-
# each given name. One is a form of tester and the other
|
5
|
-
# is used to toggle the value.
|
6
|
-
#
|
7
|
-
# attr_accessor! :a
|
8
|
-
#
|
9
|
-
# is equivalent to
|
10
|
-
#
|
11
|
-
# def a?
|
12
|
-
# @a
|
13
|
-
# end
|
14
|
-
#
|
15
|
-
# def a!(value=true)
|
16
|
-
# @a = value
|
17
|
-
# self
|
18
|
-
# end
|
19
|
-
#
|
20
|
-
# CREDIT: Trans
|
21
|
-
|
22
|
-
def attr_accessor!(*args)
|
23
|
-
attr_reader!(*args) + attr_writer!(*args)
|
24
|
-
end
|
25
|
-
|
26
|
-
alias_method :attr_toggler, :attr_accessor!
|
27
|
-
alias_method :alias_switcher, :alias_accessor!
|
28
|
-
|
29
|
-
# Create aliases for flag accessors.
|
30
|
-
#
|
31
|
-
# CREDIT: Trans
|
32
|
-
|
33
|
-
def alias_accessor!(*args)
|
34
|
-
orig = args.last
|
35
|
-
args = args - [orig]
|
36
|
-
args.each do |name|
|
37
|
-
alias_method("#{name}?", "#{orig}?")
|
38
|
-
alias_method("#{name}!", "#{orig}!")
|
39
|
-
end
|
40
|
-
end
|
41
|
-
|
42
|
-
# Create a flaggable attribute. This creates a single methods
|
43
|
-
# used to set an attribute to "true".
|
44
|
-
#
|
45
|
-
# attr_writer! :a
|
46
|
-
#
|
47
|
-
# is equivalent to
|
48
|
-
#
|
49
|
-
# def a!(value=true)
|
50
|
-
# @a = value
|
51
|
-
# self
|
52
|
-
# end
|
53
|
-
#
|
54
|
-
def attr_writer!(*args)
|
55
|
-
code, made = '', []
|
56
|
-
args.each do |a|
|
57
|
-
code << %{
|
58
|
-
def #{a}!(value=true)
|
59
|
-
@#{a} = value
|
60
|
-
self
|
61
|
-
end
|
62
|
-
}
|
63
|
-
made << "#{a}!".to_sym
|
64
|
-
end
|
65
|
-
module_eval code
|
66
|
-
made
|
67
|
-
end
|
68
|
-
|
69
|
-
# Create aliases for flag writer.
|
70
|
-
#
|
71
|
-
# CREDIT: Trans
|
72
|
-
|
73
|
-
def alias_writer!(*args)
|
74
|
-
orig = args.last
|
75
|
-
args = args - [orig]
|
76
|
-
args.each do |name|
|
77
|
-
alias_method("#{name}!", "#{orig}!")
|
78
|
-
end
|
79
|
-
end
|
80
|
-
|
81
|
-
end
|
82
|
-
|
data/work/consider/bin.rb
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
require 'facets/filetest/safe'
|
2
|
-
require 'facets/filetest/contains'
|
3
|
-
require 'facets/filetest/relative'
|
4
|
-
|
5
|
-
=begin
|
6
|
-
module FileTest
|
7
|
-
|
8
|
-
# Return a cached list of the PATH environment variable.
|
9
|
-
# This is a support method used by #bin?
|
10
|
-
def command_paths
|
11
|
-
@command_paths ||= ENV['PATH'].split(/[:;]/)
|
12
|
-
end
|
13
|
-
|
14
|
-
# Is a file a bin/ executable?
|
15
|
-
#
|
16
|
-
# TODO: Make more robust. Probably needs to be fixed for Windows.
|
17
|
-
def bin?(fname)
|
18
|
-
is_bin = command_paths.any? do |f|
|
19
|
-
FileTest.exist?(File.join(f, fname))
|
20
|
-
end
|
21
|
-
#is_bin ? File.basename(fname) : false
|
22
|
-
is_bin ? fname : false
|
23
|
-
end
|
24
|
-
|
25
|
-
end
|
26
|
-
=end
|
data/work/consider/blackmagic.rb
DELETED
@@ -1,103 +0,0 @@
|
|
1
|
-
# BALCK MAJIC
|
2
|
-
|
3
|
-
|
4
|
-
__END__
|
5
|
-
|
6
|
-
|
7
|
-
class Class
|
8
|
-
|
9
|
-
# query langauge for the ruby object model
|
10
|
-
|
11
|
-
def defn(name, &procedure)
|
12
|
-
define_method(name, &procedure
|
13
|
-
end
|
14
|
-
|
15
|
-
end
|
16
|
-
|
17
|
-
def Class(name, &initialize)
|
18
|
-
const_set(name.capitalize, Class.new(&initialize))
|
19
|
-
end
|
20
|
-
|
21
|
-
Class(HelloWorld) do%{
|
22
|
-
attr(:msg).default("")
|
23
|
-
defn(:sayit) {
|
24
|
-
puts("Hello World")
|
25
|
-
}
|
26
|
-
}end
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
# WE PROGRAM BACKWARDS
|
32
|
-
|
33
|
-
1. class(name).method(name)
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
class ObjectX
|
39
|
-
def initialize(a, h, &b)
|
40
|
-
attributes = h
|
41
|
-
elements = a
|
42
|
-
body = b
|
43
|
-
end
|
44
|
-
|
45
|
-
def
|
46
|
-
|
47
|
-
def +(x)
|
48
|
-
case type, x.type
|
49
|
-
when [:integer, :integer]
|
50
|
-
ObjectX.new(:integer, elements[0] + x.elements[0])
|
51
|
-
when [:string, :string]
|
52
|
-
x.attributes
|
53
|
-
when
|
54
|
-
end
|
55
|
-
|
56
|
-
def <<()
|
57
|
-
|
58
|
-
end
|
59
|
-
|
60
|
-
class NilClass
|
61
|
-
|
62
|
-
def object(*a, &b)
|
63
|
-
h = a.last.is_a?(Hash) ? a.pop : {}
|
64
|
-
ObjectX.new(a, h, &b)
|
65
|
-
end
|
66
|
-
|
67
|
-
def array(*a)
|
68
|
-
a
|
69
|
-
end
|
70
|
-
|
71
|
-
def hash(hash_or_array)
|
72
|
-
case hash_or_array
|
73
|
-
when Array
|
74
|
-
Hash[*hash_or_array]
|
75
|
-
when Hash
|
76
|
-
hash_or_array.dup
|
77
|
-
else
|
78
|
-
|
79
|
-
end
|
80
|
-
end
|
81
|
-
|
82
|
-
def string(*a, &b)
|
83
|
-
String.new(*a, &b)
|
84
|
-
end
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
def array1(*a, &b)
|
89
|
-
Array.new(*a, &b)
|
90
|
-
end
|
91
|
-
|
92
|
-
def hash1(*a, &b)
|
93
|
-
Hash.new(*a, &b)
|
94
|
-
end
|
95
|
-
|
96
|
-
def string1(*a, &b)
|
97
|
-
String.new(*a, &b)
|
98
|
-
end
|
99
|
-
|
100
|
-
end
|
101
|
-
|
102
|
-
|
103
|
-
array(1,2,3)
|
@@ -1,414 +0,0 @@
|
|
1
|
-
#--
|
2
|
-
# Author:: Thomas Sawyer, Tyler Rick
|
3
|
-
# Copyright:: Copyright (c) Thomas Sawyer, probably, since this is a derivative work
|
4
|
-
# License:: Ruby License
|
5
|
-
# Submit to Facets?:: Yes
|
6
|
-
# Developer notes::
|
7
|
-
# * Based on /usr/lib/ruby/gems/1.8/gems/facets-1.8.54/lib/facets/core/module/attr_tester.rb
|
8
|
-
# * Hey Thomas, don't you think Module#attr_tester should only create the read-only a? method and have another method that creates the writer (like there how we have attr_reader, _writer, and _accessor?) ? "tester" does not imply "setter" in my mind...
|
9
|
-
# * I'm going to rename this one to bool_attr_accessor, which calls both bool_attr_reader and bool_attr_writer
|
10
|
-
# * Then you also have the option to use bool_attr_reader and bool_attr_writer separately if you so desire.
|
11
|
-
# * Other changes made:
|
12
|
-
# * Changed it so that if you call a!(false) it would actually set @a to false rather than leaving it unchanged. (I assume that was a bug.)
|
13
|
-
#++
|
14
|
-
|
15
|
-
# bool_attr_accessor
|
16
|
-
|
17
|
-
class Module
|
18
|
-
# This creates a reader method for a boolean (flag) attribute (instance variable).
|
19
|
-
#
|
20
|
-
# bool_attr_reader :a
|
21
|
-
#
|
22
|
-
# is equivalent to
|
23
|
-
#
|
24
|
-
# def a?
|
25
|
-
# @a ? true : @a
|
26
|
-
# end
|
27
|
-
#
|
28
|
-
# Example:
|
29
|
-
# class Foo
|
30
|
-
# def set_it
|
31
|
-
# @a = true
|
32
|
-
# end
|
33
|
-
# end
|
34
|
-
# x = Foo.new
|
35
|
-
# x.a? # => false
|
36
|
-
# x.set_it
|
37
|
-
# x.a? # => true
|
38
|
-
#
|
39
|
-
def bool_attr_reader(*args)
|
40
|
-
make = {}
|
41
|
-
args.each { |a|
|
42
|
-
make["#{a}?".to_sym] = %{
|
43
|
-
def #{a}?(true_value=true)
|
44
|
-
@#{a} ? true_value : @#{a}
|
45
|
-
end
|
46
|
-
}
|
47
|
-
}
|
48
|
-
module_eval make.values.join("\n"), __FILE__, __LINE__
|
49
|
-
|
50
|
-
make.keys
|
51
|
-
end
|
52
|
-
|
53
|
-
# This creates a setter method for a boolean (flag) attribute (instance variable).
|
54
|
-
#
|
55
|
-
# bool_attr_setter :a
|
56
|
-
#
|
57
|
-
# is equivalent to
|
58
|
-
#
|
59
|
-
# def a!(switch=Exception)
|
60
|
-
# if switch == Exception
|
61
|
-
# @a = !@a
|
62
|
-
# else
|
63
|
-
# @a = switch ? true : false
|
64
|
-
# self
|
65
|
-
# end
|
66
|
-
# end
|
67
|
-
#
|
68
|
-
# This setter method can either be used to set it directly to true or false or to toggle it.
|
69
|
-
#
|
70
|
-
# Examples:
|
71
|
-
# x = Klass.new
|
72
|
-
# x.a! true # sets @a to true
|
73
|
-
# x.a! # toggles @a, so that it ends up being false
|
74
|
-
# x.a! # toggles @a, so that it ends up being true
|
75
|
-
# x.a! false # sets @a to false
|
76
|
-
#
|
77
|
-
def bool_attr_setter(*args)
|
78
|
-
make = {}
|
79
|
-
args.each { |a|
|
80
|
-
make["#{a}!".to_sym] = %{
|
81
|
-
def #{a}!(switch=Exception)
|
82
|
-
if switch == Exception
|
83
|
-
@#{a} = !@#{a}
|
84
|
-
else
|
85
|
-
@#{a} = switch ? true : false
|
86
|
-
# used to be @#{a} instead of false in Facets version
|
87
|
-
self
|
88
|
-
end
|
89
|
-
end
|
90
|
-
}
|
91
|
-
}
|
92
|
-
module_eval make.values.join("\n"), __FILE__, __LINE__
|
93
|
-
make.keys
|
94
|
-
end
|
95
|
-
|
96
|
-
|
97
|
-
# This creates both a reader and a setter for a boolean (flag) attribute (instance variable).
|
98
|
-
#
|
99
|
-
# bool_attr_accessor :a
|
100
|
-
#
|
101
|
-
# is equivalent to
|
102
|
-
#
|
103
|
-
# bool_attr_reader :a
|
104
|
-
# bool_attr_setter :a
|
105
|
-
#
|
106
|
-
# Examples:
|
107
|
-
# x = Klass.new
|
108
|
-
# x.a! true # sets @a to true
|
109
|
-
# x.a? # => true
|
110
|
-
# x.a! # toggles @a, so that it ends up being false
|
111
|
-
# x.a! # toggles @a, so that it ends up being true
|
112
|
-
# x.a! false # sets @a to false
|
113
|
-
#
|
114
|
-
def bool_attr_accessor(*args)
|
115
|
-
bool_attr_reader *args
|
116
|
-
bool_attr_setter *args
|
117
|
-
end
|
118
|
-
|
119
|
-
end
|
120
|
-
|
121
|
-
# mbool_attr_accessor
|
122
|
-
|
123
|
-
class Module
|
124
|
-
# This creates a reader method for a boolean (flag) class/module variable.
|
125
|
-
#
|
126
|
-
# mbool_attr_reader :a
|
127
|
-
#
|
128
|
-
# is equivalent to
|
129
|
-
#
|
130
|
-
# def self.a?
|
131
|
-
# @@a ? true : @@a
|
132
|
-
# end
|
133
|
-
#
|
134
|
-
# Works for both classes and modules.
|
135
|
-
#
|
136
|
-
def mbool_attr_reader(*args)
|
137
|
-
make = {}
|
138
|
-
args.each { |a|
|
139
|
-
make["#{a}?".to_sym] = %{
|
140
|
-
def self.#{a}?(true_value=true)
|
141
|
-
@@#{a} ? true_value : @@#{a}
|
142
|
-
end
|
143
|
-
}
|
144
|
-
}
|
145
|
-
module_eval make.values.join("\n"), __FILE__, __LINE__
|
146
|
-
make.keys
|
147
|
-
end
|
148
|
-
|
149
|
-
# This creates a setter method for a boolean (flag) class/module variable.
|
150
|
-
#
|
151
|
-
# mbool_attr_setter :a
|
152
|
-
#
|
153
|
-
# is equivalent to
|
154
|
-
#
|
155
|
-
# def self.a!(switch=Exception)
|
156
|
-
# if switch == Exception
|
157
|
-
# @@a = !@@a
|
158
|
-
# else
|
159
|
-
# @@a = switch ? true : false
|
160
|
-
# self
|
161
|
-
# end
|
162
|
-
# end
|
163
|
-
#
|
164
|
-
# Works for both classes and modules.
|
165
|
-
#
|
166
|
-
def mbool_attr_setter(*args)
|
167
|
-
make = {}
|
168
|
-
args.each { |a|
|
169
|
-
# Initialize it first so that we won't have any NameErrors.
|
170
|
-
module_eval %{ @@#{a} = nil if !defined?(@@#{a}) }, __FILE__, __LINE__
|
171
|
-
|
172
|
-
make["#{a}!".to_sym] = %{
|
173
|
-
def self.#{a}!(switch=Exception)
|
174
|
-
if switch == Exception
|
175
|
-
@@#{a} = !@@#{a}
|
176
|
-
else
|
177
|
-
@@#{a} = switch ? true : false
|
178
|
-
self
|
179
|
-
end
|
180
|
-
end
|
181
|
-
}
|
182
|
-
}
|
183
|
-
module_eval make.values.join("\n"), __FILE__, __LINE__
|
184
|
-
make.keys
|
185
|
-
end
|
186
|
-
|
187
|
-
# This creates both a reader and a setter for a boolean (flag) class/module variable.
|
188
|
-
#
|
189
|
-
# mbool_attr_accessor :a
|
190
|
-
#
|
191
|
-
# is equivalent to
|
192
|
-
#
|
193
|
-
# mbool_attr_reader :a
|
194
|
-
# mbool_attr_setter :a
|
195
|
-
#
|
196
|
-
# Works for both classes and modules.
|
197
|
-
#
|
198
|
-
def mbool_attr_accessor(*args)
|
199
|
-
mbool_attr_reader :a
|
200
|
-
mbool_attr_setter :a
|
201
|
-
end
|
202
|
-
end
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
# _____ _
|
207
|
-
# |_ _|__ ___| |_
|
208
|
-
# | |/ _ \/ __| __|
|
209
|
-
# | | __/\__ \ |_
|
210
|
-
# |_|\___||___/\__|
|
211
|
-
#
|
212
|
-
=begin test
|
213
|
-
require 'test/unit'
|
214
|
-
require 'rubygems'
|
215
|
-
require 'qualitysmith_extensions/object/ignore_access'
|
216
|
-
|
217
|
-
# Test that it works for *instances*
|
218
|
-
class TestBoolAttr < Test::Unit::TestCase
|
219
|
-
def setup
|
220
|
-
@x = C.new
|
221
|
-
end
|
222
|
-
|
223
|
-
class C_for_default_is_nil
|
224
|
-
bool_attr_accessor :a, :b
|
225
|
-
end
|
226
|
-
|
227
|
-
# Also tests that it can create multiple accessors at once.
|
228
|
-
def test1_default_is_nil
|
229
|
-
assert_equal nil, C_for_default_is_nil.new.a?
|
230
|
-
assert_equal nil, C_for_default_is_nil.new.b?
|
231
|
-
end
|
232
|
-
|
233
|
-
class C
|
234
|
-
bool_attr_accessor :a
|
235
|
-
end
|
236
|
-
|
237
|
-
def test2_toggle
|
238
|
-
assert_equal nil, @x.a?
|
239
|
-
@x.a!
|
240
|
-
assert_equal true, @x.a?
|
241
|
-
@x.a!
|
242
|
-
assert_equal false, @x.a?
|
243
|
-
end
|
244
|
-
|
245
|
-
def test3_setter
|
246
|
-
@x.a! true
|
247
|
-
@x.a! true
|
248
|
-
assert_equal true, @x.a?
|
249
|
-
|
250
|
-
@x.a! false
|
251
|
-
assert_equal false, @x.a?
|
252
|
-
end
|
253
|
-
def test4_sets_to_boolean_even_if_try_to_set_to_other_type
|
254
|
-
@x.a! "whatever"
|
255
|
-
assert_equal true, @x.a? # Still returns a boolean even though we tried to set it to a string.
|
256
|
-
|
257
|
-
@x.a! nil
|
258
|
-
assert_equal false, @x.a? # Still returns a boolean even though we tried to set it to nil.
|
259
|
-
end
|
260
|
-
end
|
261
|
-
|
262
|
-
# Test that it works for *modules*
|
263
|
-
class TestForModules < Test::Unit::TestCase
|
264
|
-
|
265
|
-
class M_for_default_is_nil
|
266
|
-
mbool_attr_accessor :a
|
267
|
-
end
|
268
|
-
def test1_default_is_nil
|
269
|
-
assert_equal nil, M_for_default_is_nil.a?
|
270
|
-
end
|
271
|
-
|
272
|
-
module M
|
273
|
-
mbool_attr_accessor :a
|
274
|
-
end
|
275
|
-
def test2_toggle
|
276
|
-
assert_equal nil, M.a?
|
277
|
-
M.a!
|
278
|
-
assert_equal true, M.a?
|
279
|
-
M.a!
|
280
|
-
assert_equal false, M.a?
|
281
|
-
end
|
282
|
-
def test3_setter
|
283
|
-
M.a! true
|
284
|
-
M.a! true
|
285
|
-
assert_equal true, M.a?
|
286
|
-
|
287
|
-
M.a! false
|
288
|
-
assert_equal false, M.a?
|
289
|
-
end
|
290
|
-
def test4_sets_to_boolean_even_if_try_to_set_to_other_type
|
291
|
-
M.a! "whatever"
|
292
|
-
assert_equal true, M.a? # Still returns a boolean even though we tried to set it to a string.
|
293
|
-
|
294
|
-
M.a! nil
|
295
|
-
assert_equal false, M.a? # Still returns a boolean even though we tried to set it to nil.
|
296
|
-
end
|
297
|
-
end
|
298
|
-
|
299
|
-
# Test that it also works for *classes*
|
300
|
-
class TestForClasses < Test::Unit::TestCase
|
301
|
-
|
302
|
-
class C_for_default_is_nil
|
303
|
-
mbool_attr_accessor :a
|
304
|
-
end
|
305
|
-
def test1_default_is_nil
|
306
|
-
assert_equal nil, C_for_default_is_nil.a?
|
307
|
-
end
|
308
|
-
|
309
|
-
class C
|
310
|
-
mbool_attr_accessor :a
|
311
|
-
end
|
312
|
-
|
313
|
-
def test2_toggle
|
314
|
-
C.access.class_variable_set :@@a, false
|
315
|
-
assert_equal false, C.a? # otherwise would have been nil
|
316
|
-
C.a!
|
317
|
-
assert_equal true, C.a?
|
318
|
-
C.a!
|
319
|
-
assert_equal false, C.a?
|
320
|
-
|
321
|
-
assert_equal ["@_ignore_access_functor"], C.instance_variables
|
322
|
-
assert_equal ["@@a"], C.class_variables
|
323
|
-
end
|
324
|
-
|
325
|
-
def test3_setter
|
326
|
-
C.a! true
|
327
|
-
C.a! true
|
328
|
-
assert_equal true, C.a?
|
329
|
-
|
330
|
-
C.a! false
|
331
|
-
assert_equal false, C.a?
|
332
|
-
end
|
333
|
-
def test4_sets_to_boolean_even_if_try_to_set_to_other_type
|
334
|
-
C.a! "whatever"
|
335
|
-
assert_equal true, C.a? # Still returns a boolean even though we tried to set it to a string.
|
336
|
-
|
337
|
-
C.a! nil
|
338
|
-
assert_equal false, C.a? # Still returns a boolean even though we tried to set it to nil.
|
339
|
-
end
|
340
|
-
end
|
341
|
-
|
342
|
-
|
343
|
-
# Observation: You can also the normal bool_attr_accessor in conjunction with class << self.
|
344
|
-
# The methods generated seem to *behave* in the same way. Both techniques allow you to query the class, C.a?
|
345
|
-
# The only difference is in which *variables* are use to store the state:
|
346
|
-
# * class << self and the normal bool_attr_accessor:
|
347
|
-
# Stores the state in an instance variable for the *class*: @a
|
348
|
-
# * mbool_attr_accessor:
|
349
|
-
# Stores the state in a *class* variable: @@a
|
350
|
-
#
|
351
|
-
# Can someone explain to me the difference between class variables and instance variables of a class?
|
352
|
-
# It seems silly (confusing even!) to have both of them!
|
353
|
-
#
|
354
|
-
# My best explanation is that the fact that we can even *have* instance variables of a class does *not* mean it's a good idea
|
355
|
-
# to use them. It simply means that Matz made the language with as few arbitrary restrictions as possible. He made it
|
356
|
-
# technically *possible* to do a lot of things that it is probably not good practice to do... And one of those things is
|
357
|
-
# using instance variables of classes to store state information for that class.
|
358
|
-
#
|
359
|
-
# What do you think class variables are for? Exactly that! There's a *reason* we have both @a and @@a variables -- to
|
360
|
-
# *differentiate* between the two kinds of variables and keep programmers sane. So please don't blur the distinction and
|
361
|
-
# use the @a-type variable to do the job that @@a-type variables are for.
|
362
|
-
#
|
363
|
-
# Or am I missing something here?
|
364
|
-
#
|
365
|
-
class TestWith_class_self_and_plain_bool_attr_accessor < Test::Unit::TestCase
|
366
|
-
|
367
|
-
class C_for_default_is_nil
|
368
|
-
class << self
|
369
|
-
bool_attr_accessor :a
|
370
|
-
end
|
371
|
-
end
|
372
|
-
def test1_default_is_nil
|
373
|
-
assert_equal nil, C_for_default_is_nil.a?
|
374
|
-
end
|
375
|
-
|
376
|
-
class C
|
377
|
-
class << self
|
378
|
-
bool_attr_accessor :a
|
379
|
-
end
|
380
|
-
end
|
381
|
-
# This is where I spotted a class that uses this technique:
|
382
|
-
# * Test::Unit::Assertions::AssertionMessage
|
383
|
-
|
384
|
-
def test_2_toggle
|
385
|
-
assert_equal false, C.a? # Why isn't it nil like it is for the instance use case of bool_attr_accessor?
|
386
|
-
C.a!
|
387
|
-
assert_equal true, C.a?
|
388
|
-
C.a!
|
389
|
-
assert_equal false, C.a?
|
390
|
-
|
391
|
-
assert_equal ["@a"], C.instance_variables
|
392
|
-
assert_equal [], C.new.instance_variables # @a is an instance variable of the *class* *not* objects of the class -- weird!
|
393
|
-
assert_equal [], C.class_variables
|
394
|
-
end
|
395
|
-
|
396
|
-
def test3_setter
|
397
|
-
C.a! true
|
398
|
-
C.a! true
|
399
|
-
assert_equal true, C.a?
|
400
|
-
|
401
|
-
C.a! false
|
402
|
-
assert_equal false, C.a?
|
403
|
-
end
|
404
|
-
def test4_sets_to_boolean_even_if_try_to_set_to_other_type
|
405
|
-
C.a! "whatever"
|
406
|
-
assert_equal true, C.a? # Still returns a boolean even though we tried to set it to a string.
|
407
|
-
|
408
|
-
C.a! nil
|
409
|
-
assert_equal false, C.a? # Still returns a boolean even though we tried to set it to nil.
|
410
|
-
end
|
411
|
-
|
412
|
-
end
|
413
|
-
=end
|
414
|
-
|