facets 2.9.2 → 2.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
@@ -1,75 +0,0 @@
|
|
1
|
-
# Facets' BasicObject is an implementation of Jim Weirich's BlankSlate.
|
2
|
-
#
|
3
|
-
# BlankSlate
|
4
|
-
# Copyright 2004 by Jim Weirich (jim@weirichhouse.org).
|
5
|
-
# All rights reserved.
|
6
|
-
#
|
7
|
-
# Since Ruby 1.9 has a BasicObject class this will of course be
|
8
|
-
# deprecated as 1.9 goes mainstream.
|
9
|
-
|
10
|
-
unless defined? BasicObject # in case it already exists!
|
11
|
-
|
12
|
-
# BasicObject provides an abstract base class with no predefined
|
13
|
-
# methods (except for <tt>\_\_send__</tt> and <tt>\_\_id__</tt>).
|
14
|
-
# BlankSlate is useful as a base class when writing classes that
|
15
|
-
# depend upon <tt>method_missing</tt> (e.g. dynamic proxies).
|
16
|
-
class BasicObject
|
17
|
-
class << self
|
18
|
-
# Hide the method named +name+ in the BlankSlate class. Don't
|
19
|
-
# hide +instance_eval+ or any method beginning with "__".
|
20
|
-
#
|
21
|
-
# According to 1.9.1 it should have only these methods:
|
22
|
-
#
|
23
|
-
# * #__send__
|
24
|
-
# * #instance_eval
|
25
|
-
# * #instance_exec
|
26
|
-
# * #equal?
|
27
|
-
# * #==
|
28
|
-
# * #!
|
29
|
-
# * #!=
|
30
|
-
# * respond_to?
|
31
|
-
#
|
32
|
-
# Seems to me it should have #__id__ too.
|
33
|
-
def hide(name)
|
34
|
-
undef_method name if
|
35
|
-
instance_methods.include?(name.to_s) and
|
36
|
-
name !~ /^(__|respond_to\?|instance_eval$|instance_exec$|equal\?$|\=\=$)/
|
37
|
-
end
|
38
|
-
end
|
39
|
-
instance_methods.each{ |m| hide(m) }
|
40
|
-
end
|
41
|
-
|
42
|
-
# Since Ruby is very dynamic, methods added to the ancestors of
|
43
|
-
# BlankSlate <em>after BlankSlate is defined</em> will show up in the
|
44
|
-
# list of available BlankSlate methods. We handle this by defining a
|
45
|
-
# hook in the Object and Kernel classes that will hide any defined
|
46
|
-
module Kernel #:nodoc:
|
47
|
-
class << self
|
48
|
-
alias_method :facets_basic_object_method_added, :method_added
|
49
|
-
|
50
|
-
# Detect method additions to Kernel and remove them in the
|
51
|
-
# BlankSlate class.
|
52
|
-
def method_added(name)
|
53
|
-
facets_basic_object_method_added(name)
|
54
|
-
return if self != Kernel
|
55
|
-
BasicObject.hide(name)
|
56
|
-
end
|
57
|
-
end
|
58
|
-
end
|
59
|
-
|
60
|
-
class Object #:nodoc:
|
61
|
-
class << self
|
62
|
-
alias_method :facets_basic_object_method_added, :method_added
|
63
|
-
|
64
|
-
# Detect method additions to Object and remove them in the
|
65
|
-
# BlankSlate class.
|
66
|
-
def method_added(name)
|
67
|
-
facets_basic_object_method_added(name)
|
68
|
-
return if self != Object
|
69
|
-
BasicObject.hide(name)
|
70
|
-
end
|
71
|
-
end
|
72
|
-
end
|
73
|
-
|
74
|
-
end
|
75
|
-
|
data/src/standard/facets/cgi.rb
DELETED
@@ -1,44 +0,0 @@
|
|
1
|
-
require 'cgi'
|
2
|
-
|
3
|
-
class CGI
|
4
|
-
|
5
|
-
# Create an hidden input field through which an object can can be marshalled.
|
6
|
-
# This makes it very easy to pass from data betwenn requests.
|
7
|
-
def marshal_to_cgi(name, iobj)
|
8
|
-
data = CGI.escape(Marshal.dump(iobj))
|
9
|
-
return %Q{<input type="hidden" name="__#{name}__" value="#{data}"/>\n}
|
10
|
-
end
|
11
|
-
|
12
|
-
# Create an hidden input field through which an object can can be marshalled.
|
13
|
-
# This makes it very easy to pass from data between requests.
|
14
|
-
def marshal_from_cgi(name)
|
15
|
-
if self.params.has_key?("__#{name}__")
|
16
|
-
return Marshal.load(CGI.unescape(self["__#{name}__"][0]))
|
17
|
-
end
|
18
|
-
end
|
19
|
-
|
20
|
-
# TODO: Rename CGI#esc ?
|
21
|
-
|
22
|
-
# TODO: Are these two good enough to replace CGI.escape?
|
23
|
-
|
24
|
-
# Return an html "safe" version of the string,
|
25
|
-
# where every &, < and > are replaced with appropriate entities.
|
26
|
-
def esc(str)
|
27
|
-
str.gsub(/&/,'&').gsub(/</,'<').gsub(/>/,'>')
|
28
|
-
end
|
29
|
-
|
30
|
-
# Calls #esc, and then further replaces carriage returns and quote characters with entities.
|
31
|
-
def escformat(str)
|
32
|
-
esc(str).gsub(/[\r\n]+/,' ').gsub(%r|"|,'"').gsub(%r|'|,''')
|
33
|
-
end
|
34
|
-
|
35
|
-
class << self
|
36
|
-
alias :escape_html :escapeHTML
|
37
|
-
alias :unescape_html :unescapeHTML
|
38
|
-
alias :escape_element :escapeElement
|
39
|
-
alias :unescape_element :unescapeElement
|
40
|
-
end
|
41
|
-
|
42
|
-
end
|
43
|
-
|
44
|
-
# Copyright (c) 2005 Thomas Sawyer (Ruby License)
|
@@ -1,56 +0,0 @@
|
|
1
|
-
if defined?(Continuation)
|
2
|
-
|
3
|
-
# = Continuation Extension
|
4
|
-
#
|
5
|
-
# Creates a continuation in a way that is easier to use than callcc.
|
6
|
-
# On the initial call this will return the created Continuation and
|
7
|
-
# the arguments you gave to Continuation.create in an Array. If you
|
8
|
-
# then issue .call() on the Continuation execution will jump back to
|
9
|
-
# the point of time where you initially invoked Continuation.create,
|
10
|
-
# but this time it will return the Continuation and the arguments
|
11
|
-
# you supplied in an Array.
|
12
|
-
#
|
13
|
-
# You can supply a block instead of default arguments which will
|
14
|
-
# cause that block to be executed once and its result to be returned
|
15
|
-
# along side the created Continuation, but this form is confusing
|
16
|
-
# and does only rarely make sense.
|
17
|
-
#
|
18
|
-
# # Count from 0 to 10
|
19
|
-
# cc, counter = Continuation.create(0)
|
20
|
-
# counter #~> 0..10
|
21
|
-
# cc.call(counter + 1) if counter < 10
|
22
|
-
#
|
23
|
-
# # Implement something similar to Array#inject using Continuations.
|
24
|
-
# # For simplicity's sake, this is not fully compatible with the real
|
25
|
-
# # inject. Make sure that you understand Array#inject before you try
|
26
|
-
# # to understand this.
|
27
|
-
# class ::Array
|
28
|
-
# def cc_inject(value = nil)
|
29
|
-
# copy = self.clone
|
30
|
-
# cc, result, item = Continuation.create(value, nil)
|
31
|
-
# next_item = copy.shift
|
32
|
-
# if result and item
|
33
|
-
# # Aggregate the result using the block.
|
34
|
-
# cc.call(yield(result, item), next_item)
|
35
|
-
# elsif next_item
|
36
|
-
# # item not yet set and Array is not empty:
|
37
|
-
# # This means we did not get a value and thus need to use the
|
38
|
-
# # first item from the Array before we can start using the
|
39
|
-
# # block to aggregate the result.
|
40
|
-
# cc.call(next_item, result)
|
41
|
-
# end
|
42
|
-
#
|
43
|
-
# return result
|
44
|
-
# end
|
45
|
-
# end
|
46
|
-
# [1,2,3,4,5].cc_inject { |acc, n| acc + n } # => 15
|
47
|
-
#
|
48
|
-
def Continuation.create(*args, &block)
|
49
|
-
args = [args] if not args.nil? and not args.is_a? Array # 1.6.8 compatibility
|
50
|
-
cc = nil; result = callcc {|c| cc = c; block.call(cc) if block and args.empty?}
|
51
|
-
result ||= args
|
52
|
-
return *[cc, *result]
|
53
|
-
end
|
54
|
-
|
55
|
-
end
|
56
|
-
|
data/src/standard/facets/date.rb
DELETED
@@ -1,433 +0,0 @@
|
|
1
|
-
require 'date'
|
2
|
-
require 'facets/time/stamp'
|
3
|
-
|
4
|
-
# = Date
|
5
|
-
#
|
6
|
-
# This new version of Date extension has been largely improved by
|
7
|
-
# porting some of the methods used by ActiveSupport. The old version
|
8
|
-
# already had much in common with the Active Support library, so it
|
9
|
-
# was decided to take it a step further in that direction for the
|
10
|
-
# sake of interoparability.
|
11
|
-
#
|
12
|
-
# Hopefully most of these methods will find there way into Ruby's
|
13
|
-
# own standard library eventually.
|
14
|
-
#
|
15
|
-
# The biggest difference with ActiveSupport is the lack of many
|
16
|
-
# of the "English-esque" methods, and that we use #stamp with
|
17
|
-
# Date::FORMAT, instead of #to_formmated_s with Date::DATE_FORMATS.
|
18
|
-
# We do not override the standard #to_s method like ActiveSupport does.
|
19
|
-
|
20
|
-
class Date
|
21
|
-
|
22
|
-
FORMAT = {
|
23
|
-
:short => "%e %b",
|
24
|
-
:long => "%B %e, %Y",
|
25
|
-
:db => "%Y-%m-%d",
|
26
|
-
:number => "%Y%m%d",
|
27
|
-
:rfc822 => "%e %b %Y",
|
28
|
-
:default => "%Y-%m-%d",
|
29
|
-
nil => "%Y-%m-%d"
|
30
|
-
}
|
31
|
-
|
32
|
-
# Returns a new Date representing the date 1 day ago (i.e. yesterday's date).
|
33
|
-
def self.yesterday
|
34
|
-
::Date.today.yesterday
|
35
|
-
end
|
36
|
-
|
37
|
-
# Returns a new Date representing the date 1 day after today (i.e. tomorrow's date).
|
38
|
-
def self.tomorrow
|
39
|
-
::Date.today.tomorrow
|
40
|
-
end
|
41
|
-
|
42
|
-
# Returns Time.zone.today when config.time_zone is set, otherwise just returns Date.today.
|
43
|
-
def self.current
|
44
|
-
::Time.zone_default ? ::Time.zone.today : ::Date.today
|
45
|
-
end
|
46
|
-
|
47
|
-
# A method to keep Time, Date and DateTime instances interchangeable
|
48
|
-
# on conversions. In this case, it simply returns +self+.
|
49
|
-
def to_date
|
50
|
-
self
|
51
|
-
end unless method_defined?(:to_date) # 1.9+ ?
|
52
|
-
|
53
|
-
# Converts a Date instance to a DateTime, where the time is set to the beginning of the day
|
54
|
-
# and UTC offset is set to 0.
|
55
|
-
#
|
56
|
-
# date = Date.new(2007, 11, 10) # Sat, 10 Nov 2007
|
57
|
-
# date.to_datetime # Sat, 10 Nov 2007 00:00:00 0000
|
58
|
-
#
|
59
|
-
def to_datetime
|
60
|
-
::DateTime.civil(year, month, day, 0, 0, 0, 0)
|
61
|
-
end unless method_defined?(:to_datetime) # 1.9+ ?
|
62
|
-
|
63
|
-
# Converts a Date instance to a Time, where the time is set to the beginning of the day.
|
64
|
-
# The timezone can be either :local or :utc (default :local).
|
65
|
-
#
|
66
|
-
# date = Date.new(2007, 11, 10) # Sat, 10 Nov 2007
|
67
|
-
#
|
68
|
-
# date.to_time # Sat Nov 10 00:00:00 0800 2007
|
69
|
-
# date.to_time(:local) # Sat Nov 10 00:00:00 0800 2007
|
70
|
-
#
|
71
|
-
# date.to_time(:utc) # Sat Nov 10 00:00:00 UTC 2007
|
72
|
-
#
|
73
|
-
def to_time(form=:local)
|
74
|
-
::Time.send(form, year, month, day)
|
75
|
-
##::Time.send("#{form}_time", year, month, day)
|
76
|
-
end
|
77
|
-
|
78
|
-
#
|
79
|
-
def xmlschema
|
80
|
-
to_time.xmlschema
|
81
|
-
end
|
82
|
-
|
83
|
-
# Returns the number of days in the date's month.
|
84
|
-
#
|
85
|
-
# Date.new(2004,2).days_in_month #=> 29
|
86
|
-
#
|
87
|
-
# CREDIT: Ken Kunz.
|
88
|
-
def days_in_month
|
89
|
-
Date.civil(year, month, -1).day
|
90
|
-
end
|
91
|
-
|
92
|
-
def days_of_month
|
93
|
-
(1..days_in_month).to_a
|
94
|
-
end
|
95
|
-
|
96
|
-
# Get the month name for this date object
|
97
|
-
#
|
98
|
-
# CREDIT: Benjamin Oakes
|
99
|
-
def month_name
|
100
|
-
MONTHNAMES[self.month]
|
101
|
-
end
|
102
|
-
|
103
|
-
# Convert to a formatted string. See DATE_FORMATS for predefined formats.
|
104
|
-
#
|
105
|
-
# This method is aliased to <tt>to_s</tt>.
|
106
|
-
#
|
107
|
-
# date = Date.new(2007, 11, 10) # Sat, 10 Nov 2007
|
108
|
-
#
|
109
|
-
# date.stamp(:db) # => "2007-11-10"
|
110
|
-
# date.stamp(:short) # => "10 Nov"
|
111
|
-
# date.stamp(:long) # => "November 10, 2007"
|
112
|
-
# date.stamp(:rfc822) # => "10 Nov 2007"
|
113
|
-
#
|
114
|
-
# == Adding your own formats to stamp
|
115
|
-
# You can add your own formats to the Date::FORMAT hash.
|
116
|
-
# Use the format name as the hash key and a strftime string
|
117
|
-
# as the value. Eg.
|
118
|
-
#
|
119
|
-
# Date::FORMAT[:month_and_year] = "%B %Y"
|
120
|
-
#
|
121
|
-
def stamp(format=:default)
|
122
|
-
if formatter = FORMAT[format]
|
123
|
-
strftime(formatter)
|
124
|
-
else
|
125
|
-
to_s
|
126
|
-
end
|
127
|
-
end
|
128
|
-
|
129
|
-
## Overrides the default inspect method with a human readable one, e.g., "Mon, 21 Feb 2005"
|
130
|
-
##def inspect
|
131
|
-
## strftime("%a, %d %b %Y")
|
132
|
-
##end
|
133
|
-
|
134
|
-
# Provides precise Date calculations for years, months, and days.
|
135
|
-
# The +options+ parameter takes a hash with any of these keys:
|
136
|
-
# <tt>:years</tt>, <tt>:months</tt>, <tt>:weeks</tt>, <tt>:days</tt>.
|
137
|
-
def advance(options)
|
138
|
-
d = self
|
139
|
-
d = d >> options.delete(:years) * 12 if options[:years]
|
140
|
-
d = d >> options.delete(:months) if options[:months]
|
141
|
-
d = d + options.delete(:weeks) * 7 if options[:weeks]
|
142
|
-
d = d + options.delete(:days) if options[:days]
|
143
|
-
d
|
144
|
-
end
|
145
|
-
|
146
|
-
# Returns a new Date where one or more of the elements have been changed
|
147
|
-
# according to the +options+ parameter.
|
148
|
-
#
|
149
|
-
# Date.new(2007, 5, 12).change(:day=>1) # Date.new(2007, 5, 1)
|
150
|
-
# Date.new(2007, 5, 12).change(:year=>2005, :month=>1) # Date.new(2005, 1, 12)
|
151
|
-
#
|
152
|
-
def change(options)
|
153
|
-
::Date.new(
|
154
|
-
options[:year] || self.year,
|
155
|
-
options[:month] || self.month,
|
156
|
-
options[:day] || self.day
|
157
|
-
)
|
158
|
-
end
|
159
|
-
|
160
|
-
# Converts Date to a Time (or DateTime if necessary) with the time portion
|
161
|
-
# set to the beginning of the day (0:00) and then subtracts the specified
|
162
|
-
# number of seconds
|
163
|
-
def ago(seconds)
|
164
|
-
to_time.since(-seconds)
|
165
|
-
end
|
166
|
-
|
167
|
-
# Converts Date to a Time (or DateTime if necessary) with the time portion
|
168
|
-
# set to the beginning of the day (0:00) and then adds the specified number
|
169
|
-
# of seconds.
|
170
|
-
def since(seconds)
|
171
|
-
to_time.since(seconds)
|
172
|
-
end
|
173
|
-
alias :in :since
|
174
|
-
|
175
|
-
# Converts Date to a Time (or DateTime if necessary) with the time portion
|
176
|
-
# set to the beginning of the day (0:00).
|
177
|
-
def beginning_of_day
|
178
|
-
to_time
|
179
|
-
end
|
180
|
-
alias :midnight :beginning_of_day
|
181
|
-
|
182
|
-
# Convenience method which returns a new Date/DateTime representing the
|
183
|
-
# time 1 day ago.
|
184
|
-
def yesterday
|
185
|
-
self - 1
|
186
|
-
end
|
187
|
-
|
188
|
-
# Convenience method which returns a new Date/DateTime representing
|
189
|
-
# the time 1 day since the instance time.
|
190
|
-
def tomorrow
|
191
|
-
self + 1
|
192
|
-
end
|
193
|
-
|
194
|
-
end
|
195
|
-
|
196
|
-
|
197
|
-
class DateTime
|
198
|
-
|
199
|
-
#
|
200
|
-
def self.local_offset
|
201
|
-
::Time.local(2007).utc_offset.to_r / 86400
|
202
|
-
end
|
203
|
-
|
204
|
-
def future?
|
205
|
-
self > ::DateTime.current
|
206
|
-
end
|
207
|
-
|
208
|
-
def past?
|
209
|
-
self < ::DateTime.current
|
210
|
-
end
|
211
|
-
|
212
|
-
# Converts self to a Ruby Date object; time portion is discarded
|
213
|
-
def to_date
|
214
|
-
::Date.new(year, month, day)
|
215
|
-
end
|
216
|
-
|
217
|
-
# Attempts to convert self to a Ruby Time object; returns self if
|
218
|
-
# out of range of Ruby Time class. If self has an offset other than 0,
|
219
|
-
# self will just be returned unaltered, since there's no clean way
|
220
|
-
# to map it to a Time.
|
221
|
-
def to_time
|
222
|
-
self.offset == 0 ? ::Time.utc_time(year, month, day, hour, min, sec) : self
|
223
|
-
end
|
224
|
-
|
225
|
-
# To be able to keep Times, Dates and DateTimes interchangeable on conversions
|
226
|
-
def to_datetime
|
227
|
-
self
|
228
|
-
end
|
229
|
-
|
230
|
-
# Convert to a formatted string. See Time::FORMAT for predefined formats.
|
231
|
-
#
|
232
|
-
# This method is aliased to <tt>to_s</tt>.
|
233
|
-
#
|
234
|
-
# datetime = DateTime.civil(2007,12,4,0,0,0,0) # Tue, 04 Dec 2007 00:00:00 +0000
|
235
|
-
#
|
236
|
-
# datetime.stamp(:db) # => "2007-12-04 00:00:00"
|
237
|
-
# datetime.stamp(:db) # => "2007-12-04 00:00:00"
|
238
|
-
# datetime.stamp(:number) # => "20071204000000"
|
239
|
-
# datetime.stamp(:short) # => "04 Dec 00:00"
|
240
|
-
# datetime.stamp(:long) # => "December 04, 2007 00:00"
|
241
|
-
# datetime.stamp(:rfc822) # => "Tue, 04 Dec 2007 00:00:00 +0000"
|
242
|
-
#
|
243
|
-
# == Adding your own datetime formats to stamp
|
244
|
-
#
|
245
|
-
# DateTime formats are shared with Time. You can add your own to the
|
246
|
-
# Time::FORMAT hash. Use the format name as the hash key and
|
247
|
-
# a strftime string as the value. Eg.
|
248
|
-
#
|
249
|
-
# Time::FORMAT[:month_and_year] = "%B %Y"
|
250
|
-
#
|
251
|
-
def stamp(format=:default)
|
252
|
-
if formatter = ::Time::FORMAT[format]
|
253
|
-
strftime(formatter)
|
254
|
-
else
|
255
|
-
to_s
|
256
|
-
end
|
257
|
-
end
|
258
|
-
|
259
|
-
# Seconds since midnight: DateTime.now.seconds_since_midnight
|
260
|
-
def seconds_since_midnight
|
261
|
-
self.sec + (self.min * 60) + (self.hour * 3600)
|
262
|
-
end
|
263
|
-
|
264
|
-
# Returns a new DateTime where one or more of the elements have been
|
265
|
-
# changed according to the +options+ parameter. The time options
|
266
|
-
# (hour, minute, sec) reset cascadingly, so if only the hour is
|
267
|
-
# passed, then minute and sec is set to 0. If the hour and
|
268
|
-
# minute is passed, then sec is set to 0.
|
269
|
-
def change(options)
|
270
|
-
::DateTime.civil(
|
271
|
-
options[:year] || self.year,
|
272
|
-
options[:month] || self.month,
|
273
|
-
options[:day] || self.day,
|
274
|
-
options[:hour] || self.hour,
|
275
|
-
options[:min] || (options[:hour] ? 0 : self.min),
|
276
|
-
options[:sec] || ((options[:hour] || options[:min]) ? 0 : self.sec),
|
277
|
-
options[:offset] || self.offset,
|
278
|
-
options[:start] || self.start
|
279
|
-
)
|
280
|
-
end
|
281
|
-
|
282
|
-
# Uses Date to provide precise Time calculations for years, months, and days.
|
283
|
-
# The +options+ parameter takes a hash with any of these keys: <tt>:years</tt>,
|
284
|
-
# <tt>:months</tt>, <tt>:weeks</tt>, <tt>:days</tt>, <tt>:hours</tt>,
|
285
|
-
# <tt>:minutes</tt>, <tt>:seconds</tt>.
|
286
|
-
def advance(options)
|
287
|
-
d = to_date.advance(options)
|
288
|
-
datetime_advanced_by_date = change(:year => d.year, :month => d.month, :day => d.day)
|
289
|
-
seconds_to_advance = (options[:seconds] || 0) + (options[:minutes] || 0) * 60 + (options[:hours] || 0) * 3600
|
290
|
-
seconds_to_advance == 0 ? datetime_advanced_by_date : datetime_advanced_by_date.since(seconds_to_advance)
|
291
|
-
end
|
292
|
-
|
293
|
-
# Returns a new DateTime representing the time a number of seconds ago
|
294
|
-
# Do not use this method in combination with x.months, use months_ago instead!
|
295
|
-
def ago(seconds)
|
296
|
-
self.since(-seconds)
|
297
|
-
end
|
298
|
-
|
299
|
-
# Returns a new DateTime representing the time a number of seconds since the instance time
|
300
|
-
# Do not use this method in combination with x.months, use months_since instead!
|
301
|
-
def since(seconds)
|
302
|
-
self + Rational(seconds.round, 86400)
|
303
|
-
end
|
304
|
-
alias :in :since
|
305
|
-
|
306
|
-
# Returns a new DateTime representing the start of the day (0:00)
|
307
|
-
def beginning_of_day
|
308
|
-
change(:hour => 0)
|
309
|
-
end
|
310
|
-
alias :midnight :beginning_of_day
|
311
|
-
|
312
|
-
# Returns a new DateTime representing the end of the day (23:59:59)
|
313
|
-
def end_of_day
|
314
|
-
change(:hour => 23, :min => 59, :sec => 59)
|
315
|
-
end
|
316
|
-
|
317
|
-
# Adjusts DateTime to UTC by adding its offset value; offset is set to 0
|
318
|
-
#
|
319
|
-
# Example:
|
320
|
-
#
|
321
|
-
# DateTime.civil(2005,2,21,10,11,12,Rational(-6, 24)) # Mon, 21 Feb 2005 10:11:12 -0600
|
322
|
-
# DateTime.civil(2005,2,21,10,11,12,Rational(-6, 24)).utc # Mon, 21 Feb 2005 16:11:12 +0000
|
323
|
-
#
|
324
|
-
def utc
|
325
|
-
new_offset(0)
|
326
|
-
end
|
327
|
-
alias_method :getutc, :utc
|
328
|
-
|
329
|
-
# Returns true if offset == 0
|
330
|
-
def utc?
|
331
|
-
offset == 0
|
332
|
-
end
|
333
|
-
|
334
|
-
# Returns the offset value in seconds
|
335
|
-
def utc_offset
|
336
|
-
(offset * 86400).to_i
|
337
|
-
end
|
338
|
-
|
339
|
-
# Converts datetime to an appropriate format for use in XML
|
340
|
-
def xmlschema
|
341
|
-
strftime("%Y-%m-%dT%H:%M:%S%Z")
|
342
|
-
end unless method_defined?(:xmlschema) # 1.9+ ?
|
343
|
-
|
344
|
-
# Converts self to a floating-point number of seconds since the Unix epoch
|
345
|
-
def to_f
|
346
|
-
days_since_unix_epoch = self - ::DateTime.civil(1970)
|
347
|
-
(days_since_unix_epoch * 86_400).to_f
|
348
|
-
end
|
349
|
-
|
350
|
-
end
|
351
|
-
|
352
|
-
|
353
|
-
class Time
|
354
|
-
|
355
|
-
#
|
356
|
-
def self.local_time(*args)
|
357
|
-
time_with_datetime_fallback(:local, *args)
|
358
|
-
end
|
359
|
-
|
360
|
-
#
|
361
|
-
def self.utc_time(*args)
|
362
|
-
time_with_datetime_fallback(:utc, *args)
|
363
|
-
end
|
364
|
-
|
365
|
-
#
|
366
|
-
def self.time_with_datetime_fallback(utc_or_local, year, month=1, day=1, hour=0, min=0, sec=0, usec=0)
|
367
|
-
::Time.send(utc_or_local, year, month, day, hour, min, sec, usec)
|
368
|
-
rescue
|
369
|
-
offset = utc_or_local.to_sym == :local ? ::DateTime.local_offset : 0
|
370
|
-
::DateTime.civil(year, month, day, hour, min, sec, offset)
|
371
|
-
end
|
372
|
-
|
373
|
-
public :to_date
|
374
|
-
public :to_datetime
|
375
|
-
|
376
|
-
# Converts a Time object to a Date, dropping hour, minute, and second precision.
|
377
|
-
#
|
378
|
-
# my_time = Time.now # Mon Nov 12 22:59:51 -0500 2007
|
379
|
-
# my_time.to_date # Mon, 12 Nov 2007
|
380
|
-
#
|
381
|
-
# your_time = Time.parse("1/13/2009 1:13:03 P.M.") # Tue Jan 13 13:13:03 -0500 2009
|
382
|
-
# your_time.to_date # Tue, 13 Jan 2009
|
383
|
-
#
|
384
|
-
def to_date
|
385
|
-
::Date.new(year, month, day)
|
386
|
-
end
|
387
|
-
|
388
|
-
## # Convert a Time to a Date. Time is a superset of Date.
|
389
|
-
## # It is the year, month and day that are carried over.
|
390
|
-
##
|
391
|
-
## def to_date
|
392
|
-
## require 'date' # just in case
|
393
|
-
## jd = Date.__send__(:civil_to_jd, year, mon, mday, Date::ITALY)
|
394
|
-
## Date.new!(Date.__send__(:jd_to_ajd, jd, 0, 0), 0, Date::ITALY)
|
395
|
-
## end
|
396
|
-
|
397
|
-
|
398
|
-
# Converts a Time instance to a Ruby DateTime instance, preserving UTC offset.
|
399
|
-
#
|
400
|
-
# my_time = Time.now # Mon Nov 12 23:04:21 -0500 2007
|
401
|
-
# my_time.to_datetime # Mon, 12 Nov 2007 23:04:21 -0500
|
402
|
-
#
|
403
|
-
# your_time = Time.parse("1/13/2009 1:13:03 P.M.") # Tue Jan 13 13:13:03 -0500 2009
|
404
|
-
# your_time.to_datetime # Tue, 13 Jan 2009 13:13:03 -0500
|
405
|
-
#
|
406
|
-
def to_datetime
|
407
|
-
::DateTime.civil(year, month, day, hour, min, sec, Rational(utc_offset, 86400))
|
408
|
-
end
|
409
|
-
|
410
|
-
end
|
411
|
-
|
412
|
-
|
413
|
-
class String
|
414
|
-
|
415
|
-
#
|
416
|
-
def to_time(form = :utc)
|
417
|
-
::Time.__send__("#{form}_time", *::Date._parse(self, false).values_at(:year, :mon, :mday, :hour, :min, :sec).map{|arg| arg || 0 })
|
418
|
-
end
|
419
|
-
|
420
|
-
# Convert string to DateTime.
|
421
|
-
def to_datetime
|
422
|
-
date = ::Date._parse(self, false).values_at(:year, :mon, :mday, :hour, :min, :sec).map { |arg| arg || 0 }
|
423
|
-
::DateTime.civil(*date)
|
424
|
-
end
|
425
|
-
|
426
|
-
# Parse data from string.
|
427
|
-
def to_date
|
428
|
-
#::Date::civil(*ParseDate.parsedate(self)[0..2])
|
429
|
-
::Date.new(*::Date._parse(self, false).values_at(:year, :mon, :mday))
|
430
|
-
end
|
431
|
-
|
432
|
-
end
|
433
|
-
|