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/.gitignore
DELETED
data/.locat
DELETED
@@ -1,24 +0,0 @@
|
|
1
|
-
|
2
|
-
match 'lib/**/*.rb' do |file, line|
|
3
|
-
case line
|
4
|
-
when /^\s+#/
|
5
|
-
'Comment'
|
6
|
-
when /^\s+$/
|
7
|
-
'Blank'
|
8
|
-
else
|
9
|
-
'Code'
|
10
|
-
end
|
11
|
-
end
|
12
|
-
|
13
|
-
match '{test,spec}/**/*.rb' do |file, line|
|
14
|
-
unless line.strip.empty?
|
15
|
-
'Test'
|
16
|
-
end
|
17
|
-
end
|
18
|
-
|
19
|
-
match 'qed/**/*.rdoc' do |file, line|
|
20
|
-
unless line.strip.empty?
|
21
|
-
'Test'
|
22
|
-
end
|
23
|
-
end
|
24
|
-
|
data/.reap/ignore
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
work
|
data/.reap/yard.reap
DELETED
@@ -1,42 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
# yard core extensions
|
4
|
-
file "lib/core/**/*.rb" do
|
5
|
-
cmd = "yard "
|
6
|
-
cmd << "-o site/doc/yard/core "
|
7
|
-
#cmd << "--title 'Facets Standard Extensions' "
|
8
|
-
cmd << "-r doc/README.core "
|
9
|
-
cmd << "lib/core - README.rdoc AUTHORS.rdoc NOTICE.rdoc "
|
10
|
-
abort unless system cmd
|
11
|
-
end
|
12
|
-
|
13
|
-
# yard core-uncommon extensions
|
14
|
-
file "lib/core-uncommon/**/*.rb" do
|
15
|
-
cmd = "yard "
|
16
|
-
cmd << "-o site/doc/yard/core-uncommon "
|
17
|
-
#cmd << "--title 'Facets Uncommon Core Extensions' "
|
18
|
-
cmd << "-r doc/README.uncommon "
|
19
|
-
cmd << "lib/core-uncommon - README.rdoc AUTHORS.rdoc NOTICE.rdoc "
|
20
|
-
abort unless system cmd
|
21
|
-
end
|
22
|
-
|
23
|
-
# yard standard extensions
|
24
|
-
file "lib/standard/**/*.rb" do
|
25
|
-
cmd = "yard "
|
26
|
-
cmd << "-o site/doc/yard/standard "
|
27
|
-
#cmd << "--title 'Facets Standard Extensions' "
|
28
|
-
cmd << "-r doc/README.standard "
|
29
|
-
cmd << "lib/standard - README.rdoc AUTHORS.rdoc NOTICE.rdoc "
|
30
|
-
abort unless system cmd
|
31
|
-
end
|
32
|
-
|
33
|
-
# yard supplemental library
|
34
|
-
file "lib/supplemental/**/*.rb" do
|
35
|
-
cmd = "yard "
|
36
|
-
cmd << "-o site/doc/yard/supplemental "
|
37
|
-
#cmd << "--title 'Facets Supplemental Library' "
|
38
|
-
cmd << "-r doc/README.supplemental "
|
39
|
-
cmd << "lib/supplemental - README.rdoc AUTHORS.rdoc NOTICE.rdoc "
|
40
|
-
abort unless system cmd
|
41
|
-
end
|
42
|
-
|
data/.test
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
require 'ae'
|
4
|
-
require 'lemon'
|
5
|
-
require 'fileutils'
|
6
|
-
|
7
|
-
# A few File methods utilize this location for testing.
|
8
|
-
# Ultimately a more robust solution is needed b/c currently
|
9
|
-
# there is no guarentee that tests are always run from project
|
10
|
-
# root dir. Perhaps we can do a Dir.chdir to ensure it?
|
11
|
-
tmp = File.join(File.dirname(__FILE__), 'tmp')
|
12
|
-
FileUtils.mkdir(tmp) unless File.directory?(tmp)
|
13
|
-
|
14
|
-
# Default test run.
|
15
|
-
Test.run do |r|
|
16
|
-
r.files << 'test/**/test_*.rb'
|
17
|
-
end
|
18
|
-
|
19
|
-
# Generate SimpleCov coverage report.
|
20
|
-
Test.run :cov do |r|
|
21
|
-
r.files << 'test/**/test_*.rb'
|
22
|
-
require 'simplecov'
|
23
|
-
SimpleCov.start do
|
24
|
-
coverage_dir 'log/coverage'
|
25
|
-
add_filter "/test/"
|
26
|
-
add_group "Core", "lib/core"
|
27
|
-
add_group "Uncommon", "lib/core-uncommon"
|
28
|
-
add_group "Standard", "lib/standard"
|
29
|
-
add_group "Supplement", "lib/supplemental"
|
30
|
-
end
|
31
|
-
end
|
data/.yard/core.yardopts
DELETED
data/.yard/standard.yardopts
DELETED
data/.yard/supplemental.yardopts
DELETED
data/.yard/uncommon.yardopts
DELETED
data/AUTHORS.rdoc
DELETED
@@ -1,100 +0,0 @@
|
|
1
|
-
= Authors
|
2
|
-
|
3
|
-
== Project Manager & Primary Developer
|
4
|
-
|
5
|
-
* Trans (Thomas Sawyer)
|
6
|
-
|
7
|
-
== Recent Contributors
|
8
|
-
|
9
|
-
The following developers have recently contributed to the development of Facets.
|
10
|
-
They are held in the highest regard for their efforts.
|
11
|
-
|
12
|
-
* Michel Martens Clap-like CLI parser added to Shellwords.
|
13
|
-
|
14
|
-
* Alexey Petrushin Some methods from `ruby-ext` project.
|
15
|
-
* Michael Harmer Documentation Improvements
|
16
|
-
* Lavir the Whiolet Improved Range#at_rand and added File#ext.
|
17
|
-
* Jean-Denis Vauguet Added Pathname#visit.
|
18
|
-
* Roger Pack Added generational depth to Class#descendants.
|
19
|
-
* Marco Otte-Witte Fixed return value of Kernel#extend.
|
20
|
-
* Mauro Tortonesi Fixed issues with duration.rb and date.rb.
|
21
|
-
* Sandor Szücs Fixes for String#align_right and #align_left.
|
22
|
-
* Tyler Rick Fixed bug in Time#hence and #ago.
|
23
|
-
* Brian Candler Provided Enumerator::Filter.
|
24
|
-
* Jeena Paradies Provided INI implementation.
|
25
|
-
* Robert Klemme Fix for Enumerable#mode.
|
26
|
-
* Daniel Schierbeck Speed imporvements to odd? and even?
|
27
|
-
* Ken Bloom For DictionaryMatcher class (class might be renamed in future).
|
28
|
-
* Matthew Harris Incorporated very useful Duration class.
|
29
|
-
|
30
|
-
== Recent Bug Reports
|
31
|
-
|
32
|
-
The following developers have recently reported some bugs that led to corrections.
|
33
|
-
Special thanks to them for taking the time to file a report.
|
34
|
-
|
35
|
-
* Nick Caruso
|
36
|
-
* Evgeniy Dolzhenko
|
37
|
-
* Andy Freeman
|
38
|
-
* Tomasz Muras
|
39
|
-
* Dave Myron
|
40
|
-
|
41
|
-
== Rubyists of Distinction
|
42
|
-
|
43
|
-
All of the following persons have contributed to
|
44
|
-
Facets is some form or fashion over the years.
|
45
|
-
All of their hard work is greatly appreciated.
|
46
|
-
|
47
|
-
* Thibaut Barrère
|
48
|
-
* Daniel J. Berger
|
49
|
-
* Rich Bradley
|
50
|
-
* Paul Brannan
|
51
|
-
* Mikael Brockman
|
52
|
-
* Jamis Buck
|
53
|
-
* Renald Buter
|
54
|
-
* Shashank Date
|
55
|
-
* Robert Feldt
|
56
|
-
* Mauricio Fernandez
|
57
|
-
* Florian Frank
|
58
|
-
* Hal Fulton
|
59
|
-
* Noah Gibbs
|
60
|
-
* Michael Granger
|
61
|
-
* Florian Gross
|
62
|
-
* Sean O'Halpin
|
63
|
-
* Matthew Harris
|
64
|
-
* David Heinemeier Hansson
|
65
|
-
* Ilmari Heikkinen
|
66
|
-
* Thomas-Ivo Heinen
|
67
|
-
* Dave Hoover
|
68
|
-
* Ara T. Howard
|
69
|
-
* MenTaLguY
|
70
|
-
* Mohammad Khan
|
71
|
-
* Robert Klemme
|
72
|
-
* Richard Laugesen
|
73
|
-
* Derek Lewis
|
74
|
-
* Jan Molic
|
75
|
-
* George Moschovitis
|
76
|
-
* Michael Neumann
|
77
|
-
* Marco Otte-Witte
|
78
|
-
* Roger Pack
|
79
|
-
* Tim Pease
|
80
|
-
* Jonas Pfenniger
|
81
|
-
* Ryan Platte
|
82
|
-
* Oliver Renaud
|
83
|
-
* Tyler Rick
|
84
|
-
* Christoph Rippel
|
85
|
-
* Daniel Schierbeck
|
86
|
-
* Louis J Scoras
|
87
|
-
* Gavin Sinclair
|
88
|
-
* Tilo Sloboda
|
89
|
-
* Phil Tomson
|
90
|
-
* Mauro Tortonesi
|
91
|
-
* Peter Vanbroekhoven
|
92
|
-
* Jim Weirich
|
93
|
-
* Jeff Wood
|
94
|
-
* Erik Veenstra
|
95
|
-
* Austin Ziegler
|
96
|
-
* Why The Lucky Stiff
|
97
|
-
|
98
|
-
If any names are missing from this list, please let me know
|
99
|
-
and I will correct immediately.
|
100
|
-
|
data/Assembly
DELETED
@@ -1,38 +0,0 @@
|
|
1
|
-
---
|
2
|
-
gem:
|
3
|
-
active: true
|
4
|
-
|
5
|
-
github:
|
6
|
-
active: true
|
7
|
-
|
8
|
-
email:
|
9
|
-
service: Email
|
10
|
-
mailto:
|
11
|
-
- ruby-talk@ruby-lang.org
|
12
|
-
- rubyworks-mailinglist@googlegroups.com
|
13
|
-
|
14
|
-
vclog:
|
15
|
-
output: log/ChangeLog.rdoc
|
16
|
-
active: false
|
17
|
-
|
18
|
-
# TODO: Use ruby-test tool when ready
|
19
|
-
lemon:
|
20
|
-
tool : Custom
|
21
|
-
track : main
|
22
|
-
test: |
|
23
|
-
sh 'ruby-test test'
|
24
|
-
active: false
|
25
|
-
|
26
|
-
#rubyforge:
|
27
|
-
# service: Rubyforge
|
28
|
-
# groupid: 804
|
29
|
-
# sitemap:
|
30
|
-
# site : '.'
|
31
|
-
# #doc/rdoc: rdoc
|
32
|
-
# #doc/yard: yard
|
33
|
-
# active: false
|
34
|
-
|
35
|
-
#till:
|
36
|
-
# service: Till
|
37
|
-
# active: false
|
38
|
-
|
data/GPL3.txt
DELETED
@@ -1,282 +0,0 @@
|
|
1
|
-
|
2
|
-
GNU GENERAL PUBLIC LICENSE
|
3
|
-
Version 2, June 1991
|
4
|
-
|
5
|
-
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
|
6
|
-
59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
7
|
-
Everyone is permitted to copy and distribute verbatim copies
|
8
|
-
of this license document, but changing it is not allowed.
|
9
|
-
|
10
|
-
Preamble
|
11
|
-
|
12
|
-
The licenses for most software are designed to take away your
|
13
|
-
freedom to share and change it. By contrast, the GNU General Public
|
14
|
-
License is intended to guarantee your freedom to share and change free
|
15
|
-
software--to make sure the software is free for all its users. This
|
16
|
-
General Public License applies to most of the Free Software
|
17
|
-
Foundation's software and to any other program whose authors commit to
|
18
|
-
using it. (Some other Free Software Foundation software is covered by
|
19
|
-
the GNU Library General Public License instead.) You can apply it to
|
20
|
-
your programs, too.
|
21
|
-
|
22
|
-
When we speak of free software, we are referring to freedom, not
|
23
|
-
price. Our General Public Licenses are designed to make sure that you
|
24
|
-
have the freedom to distribute copies of free software (and charge for
|
25
|
-
this service if you wish), that you receive source code or can get it
|
26
|
-
if you want it, that you can change the software or use pieces of it
|
27
|
-
in new free programs; and that you know you can do these things.
|
28
|
-
|
29
|
-
To protect your rights, we need to make restrictions that forbid
|
30
|
-
anyone to deny you these rights or to ask you to surrender the rights.
|
31
|
-
These restrictions translate to certain responsibilities for you if you
|
32
|
-
distribute copies of the software, or if you modify it.
|
33
|
-
|
34
|
-
For example, if you distribute copies of such a program, whether
|
35
|
-
gratis or for a fee, you must give the recipients all the rights that
|
36
|
-
you have. You must make sure that they, too, receive or can get the
|
37
|
-
source code. And you must show them these terms so they know their
|
38
|
-
rights.
|
39
|
-
|
40
|
-
We protect your rights with two steps: (1) copyright the software, and
|
41
|
-
(2) offer you this license which gives you legal permission to copy,
|
42
|
-
distribute and/or modify the software.
|
43
|
-
|
44
|
-
Also, for each author's protection and ours, we want to make certain
|
45
|
-
that everyone understands that there is no warranty for this free
|
46
|
-
software. If the software is modified by someone else and passed on, we
|
47
|
-
want its recipients to know that what they have is not the original, so
|
48
|
-
that any problems introduced by others will not reflect on the original
|
49
|
-
authors' reputations.
|
50
|
-
|
51
|
-
Finally, any free program is threatened constantly by software
|
52
|
-
patents. We wish to avoid the danger that redistributors of a free
|
53
|
-
program will individually obtain patent licenses, in effect making the
|
54
|
-
program proprietary. To prevent this, we have made it clear that any
|
55
|
-
patent must be licensed for everyone's free use or not licensed at all.
|
56
|
-
|
57
|
-
The precise terms and conditions for copying, distribution and
|
58
|
-
modification follow.
|
59
|
-
|
60
|
-
GNU GENERAL PUBLIC LICENSE
|
61
|
-
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
62
|
-
|
63
|
-
0. This License applies to any program or other work which contains
|
64
|
-
a notice placed by the copyright holder saying it may be distributed
|
65
|
-
under the terms of this General Public License. The "Program", below,
|
66
|
-
refers to any such program or work, and a "work based on the Program"
|
67
|
-
means either the Program or any derivative work under copyright law:
|
68
|
-
that is to say, a work containing the Program or a portion of it,
|
69
|
-
either verbatim or with modifications and/or translated into another
|
70
|
-
language. (Hereinafter, translation is included without limitation in
|
71
|
-
the term "modification".) Each licensee is addressed as "you".
|
72
|
-
|
73
|
-
Activities other than copying, distribution and modification are not
|
74
|
-
covered by this License; they are outside its scope. The act of
|
75
|
-
running the Program is not restricted, and the output from the Program
|
76
|
-
is covered only if its contents constitute a work based on the
|
77
|
-
Program (independent of having been made by running the Program).
|
78
|
-
Whether that is true depends on what the Program does.
|
79
|
-
|
80
|
-
1. You may copy and distribute verbatim copies of the Program's
|
81
|
-
source code as you receive it, in any medium, provided that you
|
82
|
-
conspicuously and appropriately publish on each copy an appropriate
|
83
|
-
copyright notice and disclaimer of warranty; keep intact all the
|
84
|
-
notices that refer to this License and to the absence of any warranty;
|
85
|
-
and give any other recipients of the Program a copy of this License
|
86
|
-
along with the Program.
|
87
|
-
|
88
|
-
You may charge a fee for the physical act of transferring a copy, and
|
89
|
-
you may at your option offer warranty protection in exchange for a fee.
|
90
|
-
|
91
|
-
2. You may modify your copy or copies of the Program or any portion
|
92
|
-
of it, thus forming a work based on the Program, and copy and
|
93
|
-
distribute such modifications or work under the terms of Section 1
|
94
|
-
above, provided that you also meet all of these conditions:
|
95
|
-
|
96
|
-
a) You must cause the modified files to carry prominent notices
|
97
|
-
stating that you changed the files and the date of any change.
|
98
|
-
|
99
|
-
b) You must cause any work that you distribute or publish, that in
|
100
|
-
whole or in part contains or is derived from the Program or any
|
101
|
-
part thereof, to be licensed as a whole at no charge to all third
|
102
|
-
parties under the terms of this License.
|
103
|
-
|
104
|
-
c) If the modified program normally reads commands interactively
|
105
|
-
when run, you must cause it, when started running for such
|
106
|
-
interactive use in the most ordinary way, to print or display an
|
107
|
-
announcement including an appropriate copyright notice and a
|
108
|
-
notice that there is no warranty (or else, saying that you provide
|
109
|
-
a warranty) and that users may redistribute the program under
|
110
|
-
these conditions, and telling the user how to view a copy of this
|
111
|
-
License. (Exception: if the Program itself is interactive but
|
112
|
-
does not normally print such an announcement, your work based on
|
113
|
-
the Program is not required to print an announcement.)
|
114
|
-
|
115
|
-
These requirements apply to the modified work as a whole. If
|
116
|
-
identifiable sections of that work are not derived from the Program,
|
117
|
-
and can be reasonably considered independent and separate works in
|
118
|
-
themselves, then this License, and its terms, do not apply to those
|
119
|
-
sections when you distribute them as separate works. But when you
|
120
|
-
distribute the same sections as part of a whole which is a work based
|
121
|
-
on the Program, the distribution of the whole must be on the terms of
|
122
|
-
this License, whose permissions for other licensees extend to the
|
123
|
-
entire whole, and thus to each and every part regardless of who wrote it.
|
124
|
-
|
125
|
-
Thus, it is not the intent of this section to claim rights or contest
|
126
|
-
your rights to work written entirely by you; rather, the intent is to
|
127
|
-
exercise the right to control the distribution of derivative or
|
128
|
-
collective works based on the Program.
|
129
|
-
|
130
|
-
In addition, mere aggregation of another work not based on the Program
|
131
|
-
with the Program (or with a work based on the Program) on a volume of
|
132
|
-
a storage or distribution medium does not bring the other work under
|
133
|
-
the scope of this License.
|
134
|
-
|
135
|
-
3. You may copy and distribute the Program (or a work based on it,
|
136
|
-
under Section 2) in object code or executable form under the terms of
|
137
|
-
Sections 1 and 2 above provided that you also do one of the following:
|
138
|
-
|
139
|
-
a) Accompany it with the complete corresponding machine-readable
|
140
|
-
source code, which must be distributed under the terms of Sections
|
141
|
-
1 and 2 above on a medium customarily used for software interchange; or,
|
142
|
-
|
143
|
-
b) Accompany it with a written offer, valid for at least three
|
144
|
-
years, to give any third party, for a charge no more than your
|
145
|
-
cost of physically performing source distribution, a complete
|
146
|
-
machine-readable copy of the corresponding source code, to be
|
147
|
-
distributed under the terms of Sections 1 and 2 above on a medium
|
148
|
-
customarily used for software interchange; or,
|
149
|
-
|
150
|
-
c) Accompany it with the information you received as to the offer
|
151
|
-
to distribute corresponding source code. (This alternative is
|
152
|
-
allowed only for noncommercial distribution and only if you
|
153
|
-
received the program in object code or executable form with such
|
154
|
-
an offer, in accord with Subsection b above.)
|
155
|
-
|
156
|
-
The source code for a work means the preferred form of the work for
|
157
|
-
making modifications to it. For an executable work, complete source
|
158
|
-
code means all the source code for all modules it contains, plus any
|
159
|
-
associated interface definition files, plus the scripts used to
|
160
|
-
control compilation and installation of the executable. However, as a
|
161
|
-
special exception, the source code distributed need not include
|
162
|
-
anything that is normally distributed (in either source or binary
|
163
|
-
form) with the major components (compiler, kernel, and so on) of the
|
164
|
-
operating system on which the executable runs, unless that component
|
165
|
-
itself accompanies the executable.
|
166
|
-
|
167
|
-
If distribution of executable or object code is made by offering
|
168
|
-
access to copy from a designated place, then offering equivalent
|
169
|
-
access to copy the source code from the same place counts as
|
170
|
-
distribution of the source code, even though third parties are not
|
171
|
-
compelled to copy the source along with the object code.
|
172
|
-
|
173
|
-
4. You may not copy, modify, sublicense, or distribute the Program
|
174
|
-
except as expressly provided under this License. Any attempt
|
175
|
-
otherwise to copy, modify, sublicense or distribute the Program is
|
176
|
-
void, and will automatically terminate your rights under this License.
|
177
|
-
However, parties who have received copies, or rights, from you under
|
178
|
-
this License will not have their licenses terminated so long as such
|
179
|
-
parties remain in full compliance.
|
180
|
-
|
181
|
-
5. You are not required to accept this License, since you have not
|
182
|
-
signed it. However, nothing else grants you permission to modify or
|
183
|
-
distribute the Program or its derivative works. These actions are
|
184
|
-
prohibited by law if you do not accept this License. Therefore, by
|
185
|
-
modifying or distributing the Program (or any work based on the
|
186
|
-
Program), you indicate your acceptance of this License to do so, and
|
187
|
-
all its terms and conditions for copying, distributing or modifying
|
188
|
-
the Program or works based on it.
|
189
|
-
|
190
|
-
6. Each time you redistribute the Program (or any work based on the
|
191
|
-
Program), the recipient automatically receives a license from the
|
192
|
-
original licensor to copy, distribute or modify the Program subject to
|
193
|
-
these terms and conditions. You may not impose any further
|
194
|
-
restrictions on the recipients' exercise of the rights granted herein.
|
195
|
-
You are not responsible for enforcing compliance by third parties to
|
196
|
-
this License.
|
197
|
-
|
198
|
-
7. If, as a consequence of a court judgment or allegation of patent
|
199
|
-
infringement or for any other reason (not limited to patent issues),
|
200
|
-
conditions are imposed on you (whether by court order, agreement or
|
201
|
-
otherwise) that contradict the conditions of this License, they do not
|
202
|
-
excuse you from the conditions of this License. If you cannot
|
203
|
-
distribute so as to satisfy simultaneously your obligations under this
|
204
|
-
License and any other pertinent obligations, then as a consequence you
|
205
|
-
may not distribute the Program at all. For example, if a patent
|
206
|
-
license would not permit royalty-free redistribution of the Program by
|
207
|
-
all those who receive copies directly or indirectly through you, then
|
208
|
-
the only way you could satisfy both it and this License would be to
|
209
|
-
refrain entirely from distribution of the Program.
|
210
|
-
|
211
|
-
If any portion of this section is held invalid or unenforceable under
|
212
|
-
any particular circumstance, the balance of the section is intended to
|
213
|
-
apply and the section as a whole is intended to apply in other
|
214
|
-
circumstances.
|
215
|
-
|
216
|
-
It is not the purpose of this section to induce you to infringe any
|
217
|
-
patents or other property right claims or to contest validity of any
|
218
|
-
such claims; this section has the sole purpose of protecting the
|
219
|
-
integrity of the free software distribution system, which is
|
220
|
-
implemented by public license practices. Many people have made
|
221
|
-
generous contributions to the wide range of software distributed
|
222
|
-
through that system in reliance on consistent application of that
|
223
|
-
system; it is up to the author/donor to decide if he or she is willing
|
224
|
-
to distribute software through any other system and a licensee cannot
|
225
|
-
impose that choice.
|
226
|
-
|
227
|
-
This section is intended to make thoroughly clear what is believed to
|
228
|
-
be a consequence of the rest of this License.
|
229
|
-
|
230
|
-
8. If the distribution and/or use of the Program is restricted in
|
231
|
-
certain countries either by patents or by copyrighted interfaces, the
|
232
|
-
original copyright holder who places the Program under this License
|
233
|
-
may add an explicit geographical distribution limitation excluding
|
234
|
-
those countries, so that distribution is permitted only in or among
|
235
|
-
countries not thus excluded. In such case, this License incorporates
|
236
|
-
the limitation as if written in the body of this License.
|
237
|
-
|
238
|
-
9. The Free Software Foundation may publish revised and/or new versions
|
239
|
-
of the General Public License from time to time. Such new versions will
|
240
|
-
be similar in spirit to the present version, but may differ in detail to
|
241
|
-
address new problems or concerns.
|
242
|
-
|
243
|
-
Each version is given a distinguishing version number. If the Program
|
244
|
-
specifies a version number of this License which applies to it and "any
|
245
|
-
later version", you have the option of following the terms and conditions
|
246
|
-
either of that version or of any later version published by the Free
|
247
|
-
Software Foundation. If the Program does not specify a version number of
|
248
|
-
this License, you may choose any version ever published by the Free Software
|
249
|
-
Foundation.
|
250
|
-
|
251
|
-
10. If you wish to incorporate parts of the Program into other free
|
252
|
-
programs whose distribution conditions are different, write to the author
|
253
|
-
to ask for permission. For software which is copyrighted by the Free
|
254
|
-
Software Foundation, write to the Free Software Foundation; we sometimes
|
255
|
-
make exceptions for this. Our decision will be guided by the two goals
|
256
|
-
of preserving the free status of all derivatives of our free software and
|
257
|
-
of promoting the sharing and reuse of software generally.
|
258
|
-
|
259
|
-
NO WARRANTY
|
260
|
-
|
261
|
-
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
262
|
-
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
263
|
-
OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES
|
264
|
-
PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED
|
265
|
-
OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
266
|
-
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
|
267
|
-
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE
|
268
|
-
PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING,
|
269
|
-
REPAIR OR CORRECTION.
|
270
|
-
|
271
|
-
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
272
|
-
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR
|
273
|
-
REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES,
|
274
|
-
INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING
|
275
|
-
OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED
|
276
|
-
TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY
|
277
|
-
YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
278
|
-
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
279
|
-
POSSIBILITY OF SUCH DAMAGES.
|
280
|
-
|
281
|
-
END OF TERMS AND CONDITIONS
|
282
|
-
|