facets 1.7.46 → 1.8.0
Sign up to get free protection for your applications and to get access to all the features.
- data/PROJECT +41 -23
- data/Rakefile +164 -0
- data/VERSION +1 -1
- data/demo/cuts/benchmark.rb +71 -0
- data/demo/cuts/override.rb +33 -0
- data/doc/AUTHORS +1 -0
- data/doc/{CHANGELOG.1 → HISTORY.1} +0 -0
- data/doc/HISTORY.txt +798 -0
- data/doc/LATEST +240 -0
- data/lib/facet/ann.rb +1 -0
- data/lib/facet/ann_attr.rb +1 -0
- data/lib/facet/arguments.rb +1 -0
- data/lib/facet/array/index.rb +1 -0
- data/lib/facet/array/to_path.rb +1 -0
- data/lib/facet/autoscript.rb +1 -0
- data/lib/facet/autovivify.rb +1 -0
- data/lib/facet/behvior.rb +1 -0
- data/lib/facet/buildingblock.rb +1 -0
- data/lib/facet/class/class_load.rb +1 -0
- data/lib/facet/class/class_require.rb +1 -0
- data/lib/facet/config/inspect.rb +1 -0
- data/lib/facet/consoleutils.rb +1 -0
- data/lib/facet/dependency.rb +1 -0
- data/lib/facet/dir/self/multiglob.rb +1 -0
- data/lib/facet/dir/self/multiglob_recurse.rb +1 -0
- data/lib/facet/dir/self/multiglob_sum.rb +1 -0
- data/lib/facet/enumerable/injecting.rb +1 -0
- data/lib/facet/file/self/yaml.rb +1 -0
- data/lib/facet/fileutils/compress.rb +1 -0
- data/lib/facet/fileutils/stage.rb +1 -0
- data/lib/facet/fileutils/staged.rb +1 -0
- data/lib/facet/hash/insert.rb +1 -0
- data/lib/facet/hash/op_add.rb +1 -0
- data/lib/facet/hash/op_and.rb +1 -0
- data/lib/facet/hash/op_mul.rb +1 -0
- data/lib/facet/hash/op_or.rb +1 -0
- data/lib/facet/hash/op_sub.rb +1 -0
- data/lib/facet/hash/pairs_at.rb +1 -0
- data/lib/facet/hash/rekey.rb +1 -0
- data/lib/facet/htmlfilter.rb +1 -0
- data/lib/facet/integer/to_roman.rb +1 -0
- data/lib/facet/kernel/ask.rb +1 -0
- data/lib/facet/kernel/class_def.rb +1 -0
- data/lib/facet/kernel/daemonize.rb +1 -0
- data/lib/facet/kernel/enable_warnings.rb +1 -0
- data/lib/facet/kernel/instance_class.rb +1 -0
- data/lib/facet/kernel/instance_values.rb +1 -0
- data/lib/facet/kernel/meta_alias.rb +1 -0
- data/lib/facet/kernel/meta_class.rb +1 -0
- data/lib/facet/kernel/meta_def.rb +1 -0
- data/lib/facet/kernel/meta_eval.rb +1 -0
- data/lib/facet/kernel/object_send.rb +1 -0
- data/lib/facet/kernel/populate.rb +1 -0
- data/lib/facet/kernel/qua_class.rb +1 -0
- data/lib/facet/kernel/silence_stream.rb +1 -0
- data/lib/facet/kernel/super_at.rb +1 -0
- data/lib/facet/kernel/supress.rb +1 -0
- data/lib/facet/kernel/with.rb +1 -0
- data/lib/facet/kernel/yaml.rb +1 -0
- data/lib/facet/minitar.rb +1 -0
- data/lib/facet/module/alias_accessor.rb +1 -0
- data/lib/facet/module/include_and_extend.rb +1 -0
- data/lib/facet/module/include_function_module.rb +1 -0
- data/lib/facet/module/module_load.rb +1 -0
- data/lib/facet/module/module_method.rb +1 -0
- data/lib/facet/module/module_require.rb +1 -0
- data/lib/facet/module/new.rb +1 -0
- data/lib/facet/module/prepend.rb +1 -0
- data/lib/facet/openhash.rb +1 -0
- data/lib/facet/ostruct/instance_delegate.rb +1 -0
- data/lib/facet/populate.rb +1 -0
- data/lib/facet/proc/bind.rb +1 -0
- data/lib/facet/proc/to_h.rb +1 -0
- data/lib/facet/proc/update.rb +1 -0
- data/lib/facet/script.rb +1 -0
- data/lib/facet/string/rewrite.rb +1 -0
- data/lib/facet/symbol/chomp.rb +1 -0
- data/lib/facet/uploadutils.rb +1 -0
- data/lib/facet/version_number.rb +1 -0
- data/lib/facets.rb +3 -207
- data/lib/facets/automatic.rb +29 -0
- data/lib/facets/core/all.rb +1 -1
- data/lib/facets/core/array/index.rb +15 -0
- data/lib/facets/core/array/to_path.rb +11 -0
- data/lib/facets/core/class/class_load.rb +3 -0
- data/lib/facets/core/class/class_require.rb +3 -0
- data/lib/facets/core/config/inspect.rb +9 -0
- data/lib/facets/core/dir/self/multiglob.rb +32 -0
- data/lib/facets/core/dir/self/multiglob_recurse.rb +5 -0
- data/lib/facets/core/dir/self/multiglob_sum.rb +40 -0
- data/lib/facets/core/enumerable/each_slice.rb +1 -0
- data/lib/facets/core/enumerable/every.rb +2 -2
- data/lib/facets/core/enumerable/injecting.rb +22 -0
- data/lib/facets/core/enumerable/partition_by.rb +10 -8
- data/lib/facets/core/file/self/yaml.rb +16 -0
- data/lib/facets/core/fileutils/compress.rb +154 -0
- data/lib/facets/core/fileutils/stage.rb +230 -0
- data/lib/facets/core/fileutils/staged.rb +3 -0
- data/lib/facets/core/hash/insert.rb +20 -0
- data/lib/facets/core/hash/op_add.rb +29 -0
- data/lib/facets/core/hash/op_and.rb +37 -0
- data/lib/facets/core/hash/op_mul.rb +17 -0
- data/lib/facets/core/hash/op_or.rb +2 -0
- data/lib/facets/core/hash/op_sub.rb +2 -0
- data/lib/facets/core/hash/pairs_at.rb +17 -0
- data/lib/facets/core/hash/rekey.rb +89 -0
- data/lib/facets/core/hash/reverse_merge.rb +6 -3
- data/lib/facets/core/inflect.rb +5 -14
- data/lib/facets/core/integer/to_roman.rb +20 -0
- data/lib/facets/core/kernel/as.rb +46 -29
- data/lib/facets/core/kernel/ask.rb +14 -0
- data/lib/facets/core/kernel/class_def.rb +10 -0
- data/lib/facets/core/kernel/daemonize.rb +21 -0
- data/lib/facets/core/kernel/enable_warnings.rb +14 -0
- data/lib/facets/core/kernel/{quaclass.rb → instance_class.rb} +7 -6
- data/lib/facets/core/kernel/instance_exec.rb +12 -10
- data/lib/facets/core/kernel/instance_values.rb +12 -0
- data/lib/facets/core/kernel/meta_alias.rb +14 -0
- data/lib/facets/core/kernel/meta_class.rb +38 -0
- data/lib/facets/core/kernel/meta_def.rb +14 -0
- data/lib/facets/core/kernel/meta_eval.rb +16 -0
- data/lib/facets/core/kernel/metaclass.rb +8 -12
- data/lib/facets/core/kernel/object_send.rb +21 -0
- data/lib/facets/core/kernel/populate.rb +39 -0
- data/lib/facets/core/kernel/qua_class.rb +41 -0
- data/lib/facets/core/kernel/returning.rb +7 -47
- data/lib/facets/core/kernel/send_as.rb +10 -4
- data/lib/facets/core/kernel/set_with.rb +25 -7
- data/lib/facets/core/kernel/silence_stream.rb +22 -0
- data/lib/facets/core/kernel/singleton.rb +1 -2
- data/lib/facets/core/kernel/{superior.rb → super_at.rb} +4 -1
- data/lib/facets/core/kernel/supermethod.rb +1 -1
- data/lib/facets/core/kernel/supress.rb +15 -0
- data/lib/facets/core/kernel/with.rb +57 -0
- data/lib/facets/core/kernel/yaml.rb +7 -0
- data/lib/facets/core/module/alias_accessor.rb +19 -0
- data/lib/facets/core/module/alias_method_chain.rb +33 -0
- data/lib/facets/core/module/class_extension.rb +1 -1
- data/lib/facets/core/module/include_and_extend.rb +10 -0
- data/lib/facets/core/module/include_as.rb +17 -16
- data/lib/facets/core/module/include_function_module.rb +13 -0
- data/lib/facets/core/module/inject.rb +1 -0
- data/lib/facets/core/module/memoize.rb +4 -3
- data/lib/facets/core/module/module_load.rb +51 -0
- data/lib/facets/core/module/module_method.rb +13 -0
- data/lib/facets/core/module/module_require.rb +3 -0
- data/lib/facets/core/module/namespace.rb +96 -36
- data/lib/facets/core/module/new.rb +37 -0
- data/lib/facets/core/module/prepend.rb +63 -0
- data/lib/facets/core/module/self/op_add.rb +16 -0
- data/lib/facets/core/ostruct.rb +6 -4
- data/lib/facets/core/ostruct/__merge__.rb +3 -50
- data/lib/facets/core/ostruct/__table__.rb +3 -10
- data/lib/facets/core/ostruct/__update__.rb +29 -0
- data/lib/facets/core/ostruct/instance_delegate.rb +58 -0
- data/lib/facets/core/ostruct/op_fetch.rb +18 -0
- data/lib/facets/core/ostruct/op_store.rb +3 -40
- data/lib/facets/core/proc/bind.rb +35 -0
- data/lib/facets/core/proc/to_h.rb +27 -0
- data/lib/facets/core/proc/to_method.rb +15 -29
- data/lib/facets/core/proc/update.rb +11 -0
- data/lib/facets/core/string/dresner.rb +1 -1
- data/lib/facets/core/string/rewrite.rb +34 -0
- data/lib/facets/core/symbol/chomp.rb +9 -0
- data/lib/facets/core/time/stamp.rb +32 -16
- data/lib/facets/more/ann.rb +249 -0
- data/lib/facets/more/ann_attr.rb +164 -0
- data/lib/facets/more/arguments.rb +479 -0
- data/lib/facets/more/autoscript.rb +34 -0
- data/lib/facets/more/autovivify.rb +16 -0
- data/lib/facets/more/basicobject.rb +67 -54
- data/lib/facets/more/behvior.rb +59 -0
- data/lib/facets/more/buildingblock.rb +192 -0
- data/lib/facets/more/command.rb +332 -146
- data/lib/facets/more/consoleutils.rb +45 -0
- data/lib/facets/more/cookie.rb +5 -2
- data/lib/facets/more/dependency.rb +199 -0
- data/lib/facets/more/dictionary.rb +49 -11
- data/lib/facets/more/functor.rb +33 -27
- data/lib/facets/more/htmlbuilder.rb +8 -18
- data/lib/facets/more/htmlfilter.rb +566 -0
- data/lib/facets/more/htmlhelper.rb +3 -8
- data/lib/facets/more/http.rb +0 -1
- data/lib/facets/more/httpaccess.rb +1 -1
- data/lib/facets/more/instance_intercept.rb +1 -1
- data/lib/facets/more/main_as_module.rb +2 -0
- data/lib/facets/more/methodfilter.rb +4 -0
- data/lib/facets/more/minitar.rb +979 -0
- data/lib/facets/more/multiton.rb +43 -24
- data/lib/facets/more/opencascade.rb +3 -3
- data/lib/facets/more/openhash.rb +350 -0
- data/lib/facets/more/openobject.rb +9 -306
- data/lib/facets/more/populate.rb +37 -0
- data/lib/facets/more/script.rb +157 -0
- data/lib/facets/more/uploadutils.rb +207 -0
- data/lib/facets/more/version_number.rb +98 -0
- data/lib/facets/more/xmlbuilder.rb +26 -21
- data/lib/facets/more/xmlhelper.rb +1 -1
- data/lib/facets/sys.rb +212 -0
- data/lib/facets/{more → yore}/annattr.rb +1 -1
- data/lib/facets/{more → yore}/annotation.rb +38 -32
- data/lib/facets/yore/builderobject.rb +222 -0
- data/lib/facets/{core → yore}/kernel/own.rb +0 -0
- data/lib/facets/{core → yore}/kernel/require_facet.rb +0 -0
- data/lib/facets/yore/module/inject.rb +9 -0
- data/lib/facets/yore/module/namespace.rb +62 -0
- data/setup.rb +2 -2
- data/test/special/main_as_module.rb +14 -0
- data/work/README +42 -0
- data/work/TODO +73 -0
- data/work/bin/minitar +3 -0
- data/work/bin/minitar.rb +814 -0
- data/work/core/array/at_rand.rb +95 -0
- data/work/core/array/each_slice.rb +23 -0
- data/work/core/array/pick_values.rb +32 -0
- data/work/core/array/rand_indexes.rb +33 -0
- data/work/core/binding/class.rb +11 -0
- data/work/core/binding/delegate-binding.rb +19 -0
- data/work/core/binding/delegate.rb +15 -0
- data/work/core/binding/proc.rb +6 -0
- data/work/core/class/to_module.rb +3 -0
- data/work/core/enumerable/op_fetch.rb +30 -0
- data/work/core/fileutils/cptouch.rb +20 -0
- data/work/core/fileutils/nl_convert.rb +133 -0
- data/work/core/io/expect.rb +127 -0
- data/work/core/join_with.rb +13 -0
- data/work/core/kernel/call_line.rb +15 -0
- data/work/core/kernel/does.rb +7 -0
- data/work/core/kernel/message.rb +6 -0
- data/work/core/kernel/query.rb +15 -0
- data/work/core/kernel/taint.rb +10 -0
- data/work/core/logger/clean_logger.rb +10 -0
- data/work/core/module/attr-old.rb +308 -0
- data/work/core/module/attr.rb +98 -0
- data/work/core/module/attr_xxx.rb +22 -0
- data/work/core/module/by_regexp.rb +21 -0
- data/work/core/module/cast.rb +64 -0
- data/work/core/module/class_attribute_accessors.rb +57 -0
- data/work/core/module/inherit.rb +99 -0
- data/work/core/module/inherit0.rb +59 -0
- data/work/core/module/let.rb +51 -0
- data/work/core/module/meta_attr.rb +60 -0
- data/work/core/module/module_attribute_accessors.rb +57 -0
- data/work/core/module/permissions.rb +32 -0
- data/work/core/module/preserved.rb +108 -0
- data/work/core/module/sattr_accessor.rb +1 -0
- data/work/core/module/sattr_reader.rb +1 -0
- data/work/core/module/sattr_setter.rb +1 -0
- data/work/core/module/sattr_tester.rb +1 -0
- data/work/core/module/sattr_writer.rb +1 -0
- data/work/core/module/tc_attr.rb +107 -0
- data/work/core/module/to_module.rb +37 -0
- data/work/core/module/version.rb +23 -0
- data/work/core/string/frequency.rb +40 -0
- data/work/core/string/op_add.rb +24 -0
- data/work/core/string/op_div.rb +15 -0
- data/work/core/string/pred.rb +217 -0
- data/work/core/string/probability.rb +35 -0
- data/work/core/string/succ_distance.rb +112 -0
- data/work/core/string/to_arr.rb +57 -0
- data/work/core/string/to_ary.rb +12 -0
- data/work/core/string/word_wrap.rb +62 -0
- data/work/misc/calibre/ProjectInfo.annotation +46 -0
- data/work/misc/calibre/ProjectInfo.ansicode +33 -0
- data/work/misc/calibre/ProjectInfo.association +34 -0
- data/work/misc/calibre/ProjectInfo.basicobject +36 -0
- data/work/misc/calibre/ProjectInfo.bbcode +34 -0
- data/work/misc/calibre/ProjectInfo.binaryreader +35 -0
- data/work/misc/calibre/ProjectInfo.bitmask +33 -0
- data/work/misc/calibre/ProjectInfo.classinherit +36 -0
- data/work/misc/calibre/ProjectInfo.classmethods +36 -0
- data/work/misc/calibre/ProjectInfo.cloneable +33 -0
- data/work/misc/calibre/ProjectInfo.consoleapp +35 -0
- data/work/misc/calibre/ProjectInfo.coroutine +37 -0
- data/work/misc/calibre/ProjectInfo.crypt +33 -0
- data/work/misc/calibre/ProjectInfo.dictionary +40 -0
- data/work/misc/calibre/ProjectInfo.downloader +39 -0
- data/work/misc/calibre/ProjectInfo.enumerablepass +35 -0
- data/work/misc/calibre/ProjectInfo.expirable +37 -0
- data/work/misc/calibre/ProjectInfo.floatstring +35 -0
- data/work/misc/calibre/ProjectInfo.functor +40 -0
- data/work/misc/calibre/ProjectInfo.heap +33 -0
- data/work/misc/calibre/ProjectInfo.inheritor +36 -0
- data/work/misc/calibre/ProjectInfo.interval +36 -0
- data/work/misc/calibre/ProjectInfo.lisp +38 -0
- data/work/misc/calibre/ProjectInfo.lrucache +34 -0
- data/work/misc/calibre/ProjectInfo.mathconstants +41 -0
- data/work/misc/calibre/ProjectInfo.methodprobe +38 -0
- data/work/misc/calibre/ProjectInfo.mock +34 -0
- data/work/misc/calibre/ProjectInfo.multiton +36 -0
- data/work/misc/calibre/ProjectInfo.nackclass +33 -0
- data/work/misc/calibre/ProjectInfo.nilcomparable +35 -0
- data/work/misc/calibre/ProjectInfo.nullclass +35 -0
- data/work/misc/calibre/ProjectInfo.one +37 -0
- data/work/misc/calibre/ProjectInfo.openobject +39 -0
- data/work/misc/calibre/ProjectInfo.paramix +38 -0
- data/work/misc/calibre/ProjectInfo.pool +33 -0
- data/work/misc/calibre/ProjectInfo.progressbar +37 -0
- data/work/misc/calibre/ProjectInfo.reference +36 -0
- data/work/misc/calibre/ProjectInfo.semaphore +36 -0
- data/work/misc/calibre/ProjectInfo.stateparser +39 -0
- data/work/misc/calibre/ProjectInfo.statichash +33 -0
- data/work/misc/calibre/ProjectInfo.system +34 -0
- data/work/misc/calibre/ProjectInfo.tagiterator +36 -0
- data/work/misc/calibre/ProjectInfo.timer +35 -0
- data/work/misc/calibre/ProjectInfo.tracepoint +37 -0
- data/work/misc/calibre/ProjectInfo.tuple +36 -0
- data/work/misc/calibre/ProjectInfo.uniheritable +34 -0
- data/work/misc/calibre/ProjectInfo.units +34 -0
- data/work/misc/calibre/ProjectInfo.yamlstruct +34 -0
- data/work/more/annotation-rw.rb +217 -0
- data/work/more/aobject.rb +132 -0
- data/work/more/autohash.rb +67 -0
- data/work/more/cache.rb +189 -0
- data/work/more/class_inheritable_attributes.rb +120 -0
- data/work/more/commandrunner.rb +101 -0
- data/work/more/daemon.rb +70 -0
- data/work/more/debugger.rb +167 -0
- data/work/more/detach.rb +423 -0
- data/work/more/enumtype.rb +115 -0
- data/work/more/ioreactor.rb +671 -0
- data/work/more/logger_sing.rb +207 -0
- data/work/more/must.rb +37 -0
- data/work/more/old-tkxml.rb +189 -0
- data/work/more/pairhash.rb +55 -0
- data/work/more/password.rb +80 -0
- data/work/more/print_exception.rb +35 -0
- data/work/more/rand.rb +412 -0
- data/work/more/range.rb +383 -0
- data/work/more/sanitize.rb +48 -0
- data/work/more/superstruct.rb +735 -0
- data/work/more/tag.rb +31 -0
- data/work/more/timer.rb +164 -0
- data/work/op_rshift.rb +87 -0
- data/work/pore/autorequire.rb +83 -0
- data/work/pore/basefactory.rb +40 -0
- data/work/pore/hash/each.rb +76 -0
- data/work/pore/merge3.rb +765 -0
- data/work/pore/superann.rb +134 -0
- data/work/pore/sys.rb +186 -0
- data/work/pore/utils.rb +518 -0
- data/work/yore/HashAquisition.rb +36 -0
- data/work/yore/Rakefile.old +181 -0
- data/work/yore/Reapfile +63 -0
- data/work/yore/annotation.rb +489 -0
- data/{test/lib/facets/more/test_annotation.rb → work/yore/annotation2.rb} +166 -18
- data/work/yore/commandutils.rb +379 -0
- data/work/yore/openobject.rb +298 -0
- data/work/yore/reap.rb +184 -0
- data/work/yore/reap.yml +47 -0
- data/work/yore/taskable-old.rb +519 -0
- data/{lib/facets/more → work/yore}/taskable.rb +176 -17
- metadata +1164 -1427
- data/doc/CHANGELOG +0 -146
- data/lib/facet/annattr.rb +0 -1
- data/lib/facet/annotation.rb +0 -1
- data/lib/facet/builderobject.rb +0 -1
- data/lib/facet/kernel/own.rb +0 -1
- data/lib/facet/kernel/quaclass.rb +0 -1
- data/lib/facet/kernel/require_facet.rb +0 -1
- data/lib/facet/kernel/superior.rb +0 -1
- data/lib/facet/one.rb +0 -1
- data/lib/facet/ostruct/instance.rb +0 -1
- data/lib/facet/predicate.rb +0 -1
- data/lib/facet/taskable.rb +0 -1
- data/lib/facets/core/ostruct/instance.rb +0 -37
- data/lib/facets/more/builderobject.rb +0 -97
- data/lib/facets/more/one.rb +0 -153
- data/lib/facets/more/predicate.rb +0 -184
- data/test/lib/facets/core/array/test_at_rand.rb +0 -34
- data/test/lib/facets/core/array/test_delete_unless.rb +0 -28
- data/test/lib/facets/core/array/test_delete_values.rb +0 -28
- data/test/lib/facets/core/array/test_delete_values_at.rb +0 -31
- data/test/lib/facets/core/array/test_first.rb +0 -46
- data/test/lib/facets/core/array/test_head.rb +0 -42
- data/test/lib/facets/core/array/test_last_index.rb +0 -26
- data/test/lib/facets/core/array/test_merge.rb +0 -35
- data/test/lib/facets/core/array/test_mid.rb +0 -33
- data/test/lib/facets/core/array/test_middle.rb +0 -29
- data/test/lib/facets/core/array/test_op_fetch.rb +0 -35
- data/test/lib/facets/core/array/test_pick.rb +0 -40
- data/test/lib/facets/core/array/test_pos.rb +0 -28
- data/test/lib/facets/core/array/test_pot.rb +0 -28
- data/test/lib/facets/core/array/test_pull.rb +0 -28
- data/test/lib/facets/core/array/test_rand_index.rb +0 -29
- data/test/lib/facets/core/array/test_rand_subset.rb +0 -29
- data/test/lib/facets/core/array/test_range.rb +0 -32
- data/test/lib/facets/core/array/test_rotate.rb +0 -36
- data/test/lib/facets/core/array/test_select.rb +0 -28
- data/test/lib/facets/core/array/test_shuffle.rb +0 -35
- data/test/lib/facets/core/array/test_thru.rb +0 -27
- data/test/lib/facets/core/array/test_to_b.rb +0 -27
- data/test/lib/facets/core/array/test_to_h.rb +0 -33
- data/test/lib/facets/core/array/test_to_hash.rb +0 -27
- data/test/lib/facets/core/binding/self/test_of_caller.rb +0 -35
- data/test/lib/facets/core/binding/test___LINE__.rb +0 -43
- data/test/lib/facets/core/binding/test_call_stack.rb +0 -34
- data/test/lib/facets/core/binding/test_called.rb +0 -30
- data/test/lib/facets/core/binding/test_caller.rb +0 -35
- data/test/lib/facets/core/binding/test_defined.rb +0 -34
- data/test/lib/facets/core/binding/test_eval.rb +0 -34
- data/test/lib/facets/core/binding/test_local_variables.rb +0 -34
- data/test/lib/facets/core/binding/test_method_name.rb +0 -34
- data/test/lib/facets/core/binding/test_op_fetch.rb +0 -34
- data/test/lib/facets/core/binding/test_op_store.rb +0 -35
- data/test/lib/facets/core/binding/test_self.rb +0 -34
- data/test/lib/facets/core/class/test_cattr.rb +0 -63
- data/test/lib/facets/core/class/test_descendents.rb +0 -30
- data/test/lib/facets/core/class/test_method_name.rb +0 -26
- data/test/lib/facets/core/class/test_remove_descendents.rb +0 -32
- data/test/lib/facets/core/class/test_unix_path.rb +0 -26
- data/test/lib/facets/core/comparable/test_at_least.rb +0 -34
- data/test/lib/facets/core/comparable/test_clip.rb +0 -44
- data/test/lib/facets/core/comparable/test_cmp.rb +0 -28
- data/test/lib/facets/core/continuation/self/test_create.rb +0 -26
- data/test/lib/facets/core/date/test_days_in_month.rb +0 -30
- data/test/lib/facets/core/date/test_days_of_month.rb +0 -30
- data/test/lib/facets/core/date/test_stamp.rb +0 -38
- data/test/lib/facets/core/date/test_to_date.rb +0 -30
- data/test/lib/facets/core/date/test_to_s.rb +0 -30
- data/test/lib/facets/core/date/test_to_time.rb +0 -30
- data/test/lib/facets/core/dir/self/test_ancestor.rb +0 -26
- data/test/lib/facets/core/dir/self/test_ascend.rb +0 -41
- data/test/lib/facets/core/enumerable/self/test_combinations.rb +0 -46
- data/test/lib/facets/core/enumerable/self/test_cross.rb +0 -31
- data/test/lib/facets/core/enumerable/test_collect_with_index.rb +0 -27
- data/test/lib/facets/core/enumerable/test_commonality.rb +0 -31
- data/test/lib/facets/core/enumerable/test_compact_collect.rb +0 -27
- data/test/lib/facets/core/enumerable/test_count.rb +0 -38
- data/test/lib/facets/core/enumerable/test_cross.rb +0 -30
- data/test/lib/facets/core/enumerable/test_each_by.rb +0 -71
- data/test/lib/facets/core/enumerable/test_each_combination.rb +0 -29
- data/test/lib/facets/core/enumerable/test_each_pair.rb +0 -29
- data/test/lib/facets/core/enumerable/test_each_slice.rb +0 -57
- data/test/lib/facets/core/enumerable/test_each_unique_pair.rb +0 -29
- data/test/lib/facets/core/enumerable/test_eachn.rb +0 -34
- data/test/lib/facets/core/enumerable/test_entropy.rb +0 -26
- data/test/lib/facets/core/enumerable/test_every.rb +0 -35
- data/test/lib/facets/core/enumerable/test_ew.rb +0 -31
- data/test/lib/facets/core/enumerable/test_filter_collect.rb +0 -31
- data/test/lib/facets/core/enumerable/test_find_collisions.rb +0 -30
- data/test/lib/facets/core/enumerable/test_frequency.rb +0 -27
- data/test/lib/facets/core/enumerable/test_graph.rb +0 -30
- data/test/lib/facets/core/enumerable/test_ideal_entropy.rb +0 -27
- data/test/lib/facets/core/enumerable/test_none.rb +0 -33
- data/test/lib/facets/core/enumerable/test_occur.rb +0 -30
- data/test/lib/facets/core/enumerable/test_one.rb +0 -35
- data/test/lib/facets/core/enumerable/test_op_pow.rb +0 -27
- data/test/lib/facets/core/enumerable/test_partition_by.rb +0 -31
- data/test/lib/facets/core/enumerable/test_permutation.rb +0 -29
- data/test/lib/facets/core/enumerable/test_permute.rb +0 -29
- data/test/lib/facets/core/enumerable/test_probability.rb +0 -27
- data/test/lib/facets/core/enumerable/test_to_h.rb +0 -27
- data/test/lib/facets/core/enumerable/test_uniq_by.rb +0 -28
- data/test/lib/facets/core/file/self/test_create.rb +0 -44
- data/test/lib/facets/core/file/self/test_open_as_string.rb +0 -50
- data/test/lib/facets/core/file/self/test_read_list.rb +0 -40
- data/test/lib/facets/core/file/self/test_sanitize.rb +0 -46
- data/test/lib/facets/core/file/self/test_split_all.rb +0 -27
- data/test/lib/facets/core/float/test_round_at.rb +0 -46
- data/test/lib/facets/core/float/test_round_to.rb +0 -46
- data/test/lib/facets/core/hash/self/test_zipnew.rb +0 -28
- data/test/lib/facets/core/hash/test_alias.rb +0 -31
- data/test/lib/facets/core/hash/test_assert_has_keys.rb +0 -27
- data/test/lib/facets/core/hash/test_assert_has_only_keys.rb +0 -27
- data/test/lib/facets/core/hash/test_at.rb +0 -28
- data/test/lib/facets/core/hash/test_collate.rb +0 -35
- data/test/lib/facets/core/hash/test_each_with_index.rb +0 -29
- data/test/lib/facets/core/hash/test_each_with_key.rb +0 -29
- data/test/lib/facets/core/hash/test_graph.rb +0 -28
- data/test/lib/facets/core/hash/test_has_keys.rb +0 -27
- data/test/lib/facets/core/hash/test_has_only_keys.rb +0 -27
- data/test/lib/facets/core/hash/test_inverse.rb +0 -30
- data/test/lib/facets/core/hash/test_normalize_keys.rb +0 -34
- data/test/lib/facets/core/hash/test_op_fetch.rb +0 -111
- data/test/lib/facets/core/hash/test_op_lshift.rb +0 -29
- data/test/lib/facets/core/hash/test_rand_key.rb +0 -27
- data/test/lib/facets/core/hash/test_rand_pair.rb +0 -27
- data/test/lib/facets/core/hash/test_rand_value.rb +0 -27
- data/test/lib/facets/core/hash/test_replace_each.rb +0 -29
- data/test/lib/facets/core/hash/test_shuffle.rb +0 -32
- data/test/lib/facets/core/hash/test_slice.rb +0 -27
- data/test/lib/facets/core/hash/test_stringify_keys.rb +0 -34
- data/test/lib/facets/core/hash/test_swap.rb +0 -27
- data/test/lib/facets/core/hash/test_swapkey.rb +0 -29
- data/test/lib/facets/core/hash/test_symbolize_keys.rb +0 -34
- data/test/lib/facets/core/hash/test_to_h.rb +0 -27
- data/test/lib/facets/core/hash/test_to_ostruct.rb +0 -30
- data/test/lib/facets/core/hash/test_to_ostruct_recurse.rb +0 -44
- data/test/lib/facets/core/hash/test_traverse.rb +0 -37
- data/test/lib/facets/core/hash/test_update_each.rb +0 -29
- data/test/lib/facets/core/hash/test_update_keys.rb +0 -28
- data/test/lib/facets/core/hash/test_update_values.rb +0 -28
- data/test/lib/facets/core/hash/test_weave.rb +0 -29
- data/test/lib/facets/core/integer/test_factorial.rb +0 -30
- data/test/lib/facets/core/integer/test_multiple.rb +0 -43
- data/test/lib/facets/core/integer/test_of.rb +0 -28
- data/test/lib/facets/core/integer/test_ordinal.rb +0 -29
- data/test/lib/facets/core/integer/test_times_collect.rb +0 -28
- data/test/lib/facets/core/kernel/test___class__.rb +0 -26
- data/test/lib/facets/core/kernel/test_as.rb +0 -42
- data/test/lib/facets/core/kernel/test_assign_from.rb +0 -31
- data/test/lib/facets/core/kernel/test_assign_with.rb +0 -31
- data/test/lib/facets/core/kernel/test_bool.rb +0 -41
- data/test/lib/facets/core/kernel/test_bug.rb +0 -26
- data/test/lib/facets/core/kernel/test_call_stack.rb +0 -26
- data/test/lib/facets/core/kernel/test_called.rb +0 -26
- data/test/lib/facets/core/kernel/test_callee.rb +0 -26
- data/test/lib/facets/core/kernel/test_constant.rb +0 -33
- data/test/lib/facets/core/kernel/test_copy.rb +0 -40
- data/test/lib/facets/core/kernel/test_deep_copy.rb +0 -40
- data/test/lib/facets/core/kernel/test_demo.rb +0 -28
- data/test/lib/facets/core/kernel/test_fn.rb +0 -26
- data/test/lib/facets/core/kernel/test_get_by_id.rb +0 -28
- data/test/lib/facets/core/kernel/test_here.rb +0 -26
- data/test/lib/facets/core/kernel/test_in.rb +0 -27
- data/test/lib/facets/core/kernel/test_instance_exec.rb +0 -52
- data/test/lib/facets/core/kernel/test_maybe.rb +0 -26
- data/test/lib/facets/core/kernel/test_metaclass.rb +0 -34
- data/test/lib/facets/core/kernel/test_method.rb +0 -32
- data/test/lib/facets/core/kernel/test_methods.rb +0 -50
- data/test/lib/facets/core/kernel/test_new.rb +0 -30
- data/test/lib/facets/core/kernel/test_object_class.rb +0 -26
- data/test/lib/facets/core/kernel/test_object_hexid.rb +0 -27
- data/test/lib/facets/core/kernel/test_quaclass.rb +0 -27
- data/test/lib/facets/core/kernel/test_require_all.rb +0 -26
- data/test/lib/facets/core/kernel/test_require_esc.rb +0 -27
- data/test/lib/facets/core/kernel/test_require_facet.rb +0 -27
- data/test/lib/facets/core/kernel/test_resc.rb +0 -27
- data/test/lib/facets/core/kernel/test_returning.rb +0 -30
- data/test/lib/facets/core/kernel/test_send_as.rb +0 -26
- data/test/lib/facets/core/kernel/test_set_from.rb +0 -33
- data/test/lib/facets/core/kernel/test_set_with.rb +0 -33
- data/test/lib/facets/core/kernel/test_silently.rb +0 -28
- data/test/lib/facets/core/kernel/test_singleton.rb +0 -40
- data/test/lib/facets/core/kernel/test_singleton_class.rb +0 -27
- data/test/lib/facets/core/kernel/test_superior.rb +0 -30
- data/test/lib/facets/core/kernel/test_supermethod.rb +0 -33
- data/test/lib/facets/core/kernel/test_this.rb +0 -26
- data/test/lib/facets/core/kernel/test_to_b.rb +0 -28
- data/test/lib/facets/core/kernel/test_to_bool.rb +0 -28
- data/test/lib/facets/core/kernel/test_to_data.rb +0 -59
- data/test/lib/facets/core/kernel/test_uri.rb +0 -30
- data/test/lib/facets/core/kernel/test_val.rb +0 -43
- data/test/lib/facets/core/kernel/test_with_accessor.rb +0 -51
- data/test/lib/facets/core/matchdata/test_match.rb +0 -29
- data/test/lib/facets/core/matchdata/test_matchtree.rb +0 -37
- data/test/lib/facets/core/module/self/test_op_add.rb +0 -48
- data/test/lib/facets/core/module/test_abstract.rb +0 -36
- data/test/lib/facets/core/module/test_alias_module_function.rb +0 -34
- data/test/lib/facets/core/module/test_ancestor.rb +0 -26
- data/test/lib/facets/core/module/test_basename.rb +0 -26
- data/test/lib/facets/core/module/test_by_name.rb +0 -29
- data/test/lib/facets/core/module/test_class_extension.rb +0 -70
- data/test/lib/facets/core/module/test_clone_using.rb +0 -55
- data/test/lib/facets/core/module/test_dirname.rb +0 -26
- data/test/lib/facets/core/module/test_equate_on.rb +0 -37
- data/test/lib/facets/core/module/test_include_as.rb +0 -35
- data/test/lib/facets/core/module/test_initializer.rb +0 -32
- data/test/lib/facets/core/module/test_instance_methods.rb +0 -59
- data/test/lib/facets/core/module/test_integrate.rb +0 -35
- data/test/lib/facets/core/module/test_memoize.rb +0 -50
- data/test/lib/facets/core/module/test_modspace.rb +0 -27
- data/test/lib/facets/core/module/test_namespace.rb +0 -33
- data/test/lib/facets/core/module/test_nesting.rb +0 -36
- data/test/lib/facets/core/module/test_nodef.rb +0 -30
- data/test/lib/facets/core/module/test_on_included.rb +0 -36
- data/test/lib/facets/core/module/test_redef.rb +0 -30
- data/test/lib/facets/core/module/test_redefine_method.rb +0 -30
- data/test/lib/facets/core/module/test_redirect.rb +0 -30
- data/test/lib/facets/core/module/test_redirect_method.rb +0 -30
- data/test/lib/facets/core/module/test_remove.rb +0 -30
- data/test/lib/facets/core/module/test_rename.rb +0 -31
- data/test/lib/facets/core/module/test_rename_method.rb +0 -31
- data/test/lib/facets/core/module/test_revisal.rb +0 -35
- data/test/lib/facets/core/module/test_shadow_method.rb +0 -30
- data/test/lib/facets/core/module/test_sort_on.rb +0 -42
- data/test/lib/facets/core/module/test_this.rb +0 -31
- data/test/lib/facets/core/module/test_wrap.rb +0 -30
- data/test/lib/facets/core/module/test_wrap_method.rb +0 -30
- data/test/lib/facets/core/nilclass/test_blank.rb +0 -26
- data/test/lib/facets/core/nilclass/test_empty.rb +0 -26
- data/test/lib/facets/core/nilclass/test_include.rb +0 -26
- data/test/lib/facets/core/nilclass/test_op_fetch.rb +0 -28
- data/test/lib/facets/core/nilclass/test_size.rb +0 -30
- data/test/lib/facets/core/nilclass/test_to_h.rb +0 -26
- data/test/lib/facets/core/numeric/test_approx.rb +0 -29
- data/test/lib/facets/core/numeric/test_ceil_multiple.rb +0 -31
- data/test/lib/facets/core/numeric/test_distance.rb +0 -28
- data/test/lib/facets/core/numeric/test_succ.rb +0 -40
- data/test/lib/facets/core/numeric/test_to_b.rb +0 -27
- data/test/lib/facets/core/ostruct/test___merge__.rb +0 -38
- data/test/lib/facets/core/ostruct/test___update__.rb +0 -29
- data/test/lib/facets/core/ostruct/test_op_fetch.rb +0 -27
- data/test/lib/facets/core/ostruct/test_op_store.rb +0 -28
- data/test/lib/facets/core/proc/test_compose.rb +0 -29
- data/test/lib/facets/core/proc/test_op_mul.rb +0 -34
- data/test/lib/facets/core/proc/test_to_method.rb +0 -44
- data/test/lib/facets/core/range/test_to_r.rb +0 -27
- data/test/lib/facets/core/range/test_to_range.rb +0 -27
- data/test/lib/facets/core/range/test_umbrella.rb +0 -34
- data/test/lib/facets/core/range/test_within.rb +0 -29
- data/test/lib/facets/core/regexp/test_arity.rb +0 -33
- data/test/lib/facets/core/regexp/test_to_re.rb +0 -27
- data/test/lib/facets/core/regexp/test_to_regexp.rb +0 -27
- data/test/lib/facets/core/string/self/test_interpolate.rb +0 -27
- data/test/lib/facets/core/string/self/test_patterns.rb +0 -28
- data/test/lib/facets/core/string/self/test_rand_letter.rb +0 -26
- data/test/lib/facets/core/string/test_align_center.rb +0 -34
- data/test/lib/facets/core/string/test_at_rand.rb +0 -35
- data/test/lib/facets/core/string/test_basename.rb +0 -41
- data/test/lib/facets/core/string/test_blank.rb +0 -27
- data/test/lib/facets/core/string/test_bracket.rb +0 -49
- data/test/lib/facets/core/string/test_camelcase.rb +0 -39
- data/test/lib/facets/core/string/test_camelize.rb +0 -26
- data/test/lib/facets/core/string/test_capitalized.rb +0 -26
- data/test/lib/facets/core/string/test_chars.rb +0 -27
- data/test/lib/facets/core/string/test_cmp.rb +0 -30
- data/test/lib/facets/core/string/test_demodulize.rb +0 -38
- data/test/lib/facets/core/string/test_divide.rb +0 -29
- data/test/lib/facets/core/string/test_downcase.rb +0 -26
- data/test/lib/facets/core/string/test_dresner.rb +0 -32
- data/test/lib/facets/core/string/test_each_char.rb +0 -29
- data/test/lib/facets/core/string/test_each_word.rb +0 -29
- data/test/lib/facets/core/string/test_first.rb +0 -43
- data/test/lib/facets/core/string/test_fold.rb +0 -34
- data/test/lib/facets/core/string/test_humanize.rb +0 -26
- data/test/lib/facets/core/string/test_indent.rb +0 -40
- data/test/lib/facets/core/string/test_index_all.rb +0 -26
- data/test/lib/facets/core/string/test_last.rb +0 -46
- data/test/lib/facets/core/string/test_line_wrap.rb +0 -27
- data/test/lib/facets/core/string/test_lines.rb +0 -26
- data/test/lib/facets/core/string/test_lowercase.rb +0 -26
- data/test/lib/facets/core/string/test_margin.rb +0 -117
- data/test/lib/facets/core/string/test_methodize.rb +0 -27
- data/test/lib/facets/core/string/test_modulize.rb +0 -29
- data/test/lib/facets/core/string/test_mscan.rb +0 -30
- data/test/lib/facets/core/string/test_natcmp.rb +0 -30
- data/test/lib/facets/core/string/test_nchar.rb +0 -29
- data/test/lib/facets/core/string/test_pathize.rb +0 -29
- data/test/lib/facets/core/string/test_pop.rb +0 -47
- data/test/lib/facets/core/string/test_pot.rb +0 -39
- data/test/lib/facets/core/string/test_push.rb +0 -40
- data/test/lib/facets/core/string/test_quote.rb +0 -49
- data/test/lib/facets/core/string/test_rand_byte.rb +0 -35
- data/test/lib/facets/core/string/test_rand_index.rb +0 -26
- data/test/lib/facets/core/string/test_range.rb +0 -27
- data/test/lib/facets/core/string/test_range_all.rb +0 -27
- data/test/lib/facets/core/string/test_range_of_line.rb +0 -28
- data/test/lib/facets/core/string/test_regesc.rb +0 -28
- data/test/lib/facets/core/string/test_shatter.rb +0 -29
- data/test/lib/facets/core/string/test_shift.rb +0 -40
- data/test/lib/facets/core/string/test_shuffle.rb +0 -27
- data/test/lib/facets/core/string/test_similarity.rb +0 -26
- data/test/lib/facets/core/string/test_singular.rb +0 -86
- data/test/lib/facets/core/string/test_soundex.rb +0 -41
- data/test/lib/facets/core/string/test_succ.rb +0 -29
- data/test/lib/facets/core/string/test_to_a.rb +0 -27
- data/test/lib/facets/core/string/test_to_b.rb +0 -41
- data/test/lib/facets/core/string/test_to_const.rb +0 -28
- data/test/lib/facets/core/string/test_to_date.rb +0 -30
- data/test/lib/facets/core/string/test_to_proc.rb +0 -33
- data/test/lib/facets/core/string/test_to_re.rb +0 -28
- data/test/lib/facets/core/string/test_to_time.rb +0 -30
- data/test/lib/facets/core/string/test_unix_crypt.rb +0 -30
- data/test/lib/facets/core/string/test_unpack.rb +0 -34
- data/test/lib/facets/core/string/test_unshift.rb +0 -39
- data/test/lib/facets/core/string/test_upcase.rb +0 -30
- data/test/lib/facets/core/string/test_whitespace.rb +0 -27
- data/test/lib/facets/core/string/test_word_filter.rb +0 -34
- data/test/lib/facets/core/string/test_word_wrap.rb +0 -51
- data/test/lib/facets/core/string/test_words.rb +0 -37
- data/test/lib/facets/core/symbol/test_camelcase.rb +0 -26
- data/test/lib/facets/core/symbol/test_camelize.rb +0 -27
- data/test/lib/facets/core/symbol/test_capitalize.rb +0 -26
- data/test/lib/facets/core/symbol/test_capitalized.rb +0 -27
- data/test/lib/facets/core/symbol/test_downcase.rb +0 -27
- data/test/lib/facets/core/symbol/test_not.rb +0 -29
- data/test/lib/facets/core/symbol/test_pad.rb +0 -27
- data/test/lib/facets/core/symbol/test_succ.rb +0 -28
- data/test/lib/facets/core/symbol/test_to_const.rb +0 -28
- data/test/lib/facets/core/symbol/test_to_proc.rb +0 -33
- data/test/lib/facets/core/symbol/test_to_str.rb +0 -28
- data/test/lib/facets/core/symbol/test_underscore.rb +0 -26
- data/test/lib/facets/core/symbol/test_upcase.rb +0 -27
- data/test/lib/facets/core/time/test_change.rb +0 -33
- data/test/lib/facets/core/time/test_elapse.rb +0 -27
- data/test/lib/facets/core/time/test_stamp.rb +0 -31
- data/test/lib/facets/core/time/test_to_date.rb +0 -31
- data/test/lib/facets/core/time/test_to_s.rb +0 -31
- data/test/lib/facets/core/time/test_to_time.rb +0 -31
- data/test/lib/facets/more/test_annattr.rb +0 -39
- data/test/lib/facets/more/test_ansicode.rb +0 -36
- data/test/lib/facets/more/test_association.rb +0 -51
- data/test/lib/facets/more/test_autoarray.rb +0 -32
- data/test/lib/facets/more/test_basicobject.rb +0 -67
- data/test/lib/facets/more/test_bbcode.rb +0 -34
- data/test/lib/facets/more/test_binaryreader.rb +0 -64
- data/test/lib/facets/more/test_bitmask.rb +0 -47
- data/test/lib/facets/more/test_bytes.rb +0 -84
- data/test/lib/facets/more/test_classmethods.rb +0 -69
- data/test/lib/facets/more/test_command.rb +0 -38
- data/test/lib/facets/more/test_coroutine.rb +0 -60
- data/test/lib/facets/more/test_crypt.rb +0 -46
- data/test/lib/facets/more/test_cut.rb +0 -198
- data/test/lib/facets/more/test_dictionary.rb +0 -97
- data/test/lib/facets/more/test_elementor.rb +0 -52
- data/test/lib/facets/more/test_enumerablepass.rb +0 -86
- data/test/lib/facets/more/test_floatstring.rb +0 -36
- data/test/lib/facets/more/test_functor.rb +0 -39
- data/test/lib/facets/more/test_htmlbuilder.rb +0 -38
- data/test/lib/facets/more/test_infinity.rb +0 -50
- data/test/lib/facets/more/test_inheritor.rb +0 -155
- data/test/lib/facets/more/test_instance_intercept.rb +0 -50
- data/test/lib/facets/more/test_interval.rb +0 -119
- data/test/lib/facets/more/test_json.rb +0 -232
- data/test/lib/facets/more/test_linkedlist.rb +0 -53
- data/test/lib/facets/more/test_lisp.rb +0 -47
- data/test/lib/facets/more/test_lisp_format.rb +0 -37
- data/test/lib/facets/more/test_lrucache.rb +0 -25
- data/test/lib/facets/more/test_mathconstants.rb +0 -18
- data/test/lib/facets/more/test_methodfilter.rb +0 -45
- data/test/lib/facets/more/test_methodprobe.rb +0 -53
- data/test/lib/facets/more/test_multipliers.rb +0 -114
- data/test/lib/facets/more/test_multiton.rb +0 -199
- data/test/lib/facets/more/test_nackclass.rb +0 -45
- data/test/lib/facets/more/test_nilcomparable.rb +0 -47
- data/test/lib/facets/more/test_opencascade.rb +0 -75
- data/test/lib/facets/more/test_openobject.rb +0 -126
- data/test/lib/facets/more/test_overload.rb +0 -54
- data/test/lib/facets/more/test_paramix.rb +0 -100
- data/test/lib/facets/more/test_pqueue.rb +0 -39
- data/test/lib/facets/more/test_predicate.rb +0 -79
- data/test/lib/facets/more/test_preinitialize.rb +0 -49
- data/test/lib/facets/more/test_promoteself.rb +0 -45
- data/test/lib/facets/more/test_recorder.rb +0 -44
- data/test/lib/facets/more/test_snapshot.rb +0 -34
- data/test/lib/facets/more/test_statichash.rb +0 -31
- data/test/lib/facets/more/test_syncarray.rb +0 -28
- data/test/lib/facets/more/test_synchash.rb +0 -28
- data/test/lib/facets/more/test_tagiterator.rb +0 -93
- data/test/lib/facets/more/test_taskable.rb +0 -190
- data/test/lib/facets/more/test_timer.rb +0 -66
- data/test/lib/facets/more/test_times.rb +0 -73
- data/test/lib/facets/more/test_tuple.rb +0 -64
- data/test/lib/facets/more/test_typecast.rb +0 -68
- data/test/lib/facets/more/test_uninheritable.rb +0 -42
- data/test/lib/facets/more/test_units.rb +0 -111
- data/test/lib/facets/more/test_xmlbuilder.rb +0 -38
- data/test/lib/facets/more/test_xmlhelper.rb +0 -40
- data/test/lib/facets/more/test_xoxo.rb +0 -288
- data/test/lib/facets/more/test_yamlstruct.rb +0 -37
- data/util/announce +0 -20
- data/util/changelog +0 -8
- data/util/count +0 -8
- data/util/extest +0 -8
- data/util/list +0 -38
- data/util/package +0 -9
- data/util/prepare +0 -12
- data/util/redirect +0 -34
- data/util/release +0 -13
- data/util/setup +0 -7
- data/util/test +0 -7
- data/util/version +0 -8
@@ -29,17 +29,13 @@
|
|
29
29
|
# # TODO
|
30
30
|
#
|
31
31
|
|
32
|
-
require 'cgi' # TODO deprecate use
|
33
|
-
|
32
|
+
require 'cgi' # TODO deprecate use of CGI
|
34
33
|
require 'facets/more/xmlhelper.rb'
|
35
34
|
|
36
35
|
module HTMLHelper
|
37
|
-
|
38
36
|
include XMLHelper
|
39
37
|
|
40
|
-
|
41
|
-
module_function
|
42
|
-
###############
|
38
|
+
extend self #module_function
|
43
39
|
|
44
40
|
# Create an hidden input field through which an object can can be marshalled.
|
45
41
|
# This makes it very easy to pass from data betwenn requests.
|
@@ -72,8 +68,7 @@ module HTMLHelper
|
|
72
68
|
end
|
73
69
|
|
74
70
|
|
75
|
-
|
76
|
-
=begin
|
71
|
+
=begin scrap
|
77
72
|
|
78
73
|
if defined? CGI
|
79
74
|
class CGI
|
data/lib/facets/more/http.rb
CHANGED
@@ -1445,7 +1445,7 @@ private
|
|
1445
1445
|
@headers.each do |line|
|
1446
1446
|
case line
|
1447
1447
|
when /^Content-Length:\s+(\d+)/i
|
1448
|
-
|
1448
|
+
@content_length = $1.to_i
|
1449
1449
|
when /^Transfer-Encoding:\s+chunked/i
|
1450
1450
|
@chunked = true
|
1451
1451
|
@content_length = true # how?
|
@@ -75,7 +75,7 @@ class Module
|
|
75
75
|
}
|
76
76
|
end
|
77
77
|
|
78
|
-
# TODO make method_added hook more robust so not
|
78
|
+
# TODO make method_added hook more robust so not as to clobber others.
|
79
79
|
# If a method is added to the module/class that is advised.
|
80
80
|
|
81
81
|
def method_added( meth )
|
@@ -0,0 +1,979 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
#--
|
3
|
+
# Archive::Tar::Minitar 0.5.1
|
4
|
+
# Copyright 2004 Mauricio Julio Fern�dez Pradier and Austin Ziegler
|
5
|
+
#
|
6
|
+
# This program is based on and incorporates parts of RPA::Package from
|
7
|
+
# rpa-base (lib/rpa/package.rb and lib/rpa/util.rb) by Mauricio and has been
|
8
|
+
# adapted to be more generic by Austin.
|
9
|
+
#
|
10
|
+
# It is licensed under the GNU General Public Licence or Ruby's licence.
|
11
|
+
#
|
12
|
+
# $Id: minitar.rb,v 1.3 2004/09/22 17:47:43 austin Exp $
|
13
|
+
#++
|
14
|
+
|
15
|
+
module Archive; end
|
16
|
+
module Archive::Tar; end
|
17
|
+
|
18
|
+
# = Archive::Tar::PosixHeader
|
19
|
+
# Implements the POSIX tar header as a Ruby class. The structure of
|
20
|
+
# the POSIX tar header is:
|
21
|
+
#
|
22
|
+
# struct tarfile_entry_posix
|
23
|
+
# { // pack/unpack
|
24
|
+
# char name[100]; // ASCII (+ Z unless filled) a100/Z100
|
25
|
+
# char mode[8]; // 0 padded, octal, null a8 /A8
|
26
|
+
# char uid[8]; // ditto a8 /A8
|
27
|
+
# char gid[8]; // ditto a8 /A8
|
28
|
+
# char size[12]; // 0 padded, octal, null a12 /A12
|
29
|
+
# char mtime[12]; // 0 padded, octal, null a12 /A12
|
30
|
+
# char checksum[8]; // 0 padded, octal, null, space a8 /A8
|
31
|
+
# char typeflag[1]; // see below a /a
|
32
|
+
# char linkname[100]; // ASCII + (Z unless filled) a100/Z100
|
33
|
+
# char magic[6]; // "ustar\0" a6 /A6
|
34
|
+
# char version[2]; // "00" a2 /A2
|
35
|
+
# char uname[32]; // ASCIIZ a32 /Z32
|
36
|
+
# char gname[32]; // ASCIIZ a32 /Z32
|
37
|
+
# char devmajor[8]; // 0 padded, octal, null a8 /A8
|
38
|
+
# char devminor[8]; // 0 padded, octal, null a8 /A8
|
39
|
+
# char prefix[155]; // ASCII (+ Z unless filled) a155/Z155
|
40
|
+
# };
|
41
|
+
#
|
42
|
+
# The +typeflag+ may be one of the following known values:
|
43
|
+
#
|
44
|
+
# <tt>"0"</tt>:: Regular file. NULL should be treated as a synonym, for
|
45
|
+
# compatibility purposes.
|
46
|
+
# <tt>"1"</tt>:: Hard link.
|
47
|
+
# <tt>"2"</tt>:: Symbolic link.
|
48
|
+
# <tt>"3"</tt>:: Character device node.
|
49
|
+
# <tt>"4"</tt>:: Block device node.
|
50
|
+
# <tt>"5"</tt>:: Directory.
|
51
|
+
# <tt>"6"</tt>:: FIFO node.
|
52
|
+
# <tt>"7"</tt>:: Reserved.
|
53
|
+
#
|
54
|
+
# POSIX indicates that "A POSIX-compliant implementation must treat any
|
55
|
+
# unrecognized typeflag value as a regular file."
|
56
|
+
class Archive::Tar::PosixHeader
|
57
|
+
FIELDS = %w(name mode uid gid size mtime checksum typeflag linkname) +
|
58
|
+
%w(magic version uname gname devmajor devminor prefix)
|
59
|
+
|
60
|
+
FIELDS.each { |field| attr_reader field.intern }
|
61
|
+
|
62
|
+
HEADER_PACK_FORMAT = "a100a8a8a8a12a12a7aaa100a6a2a32a32a8a8a155"
|
63
|
+
HEADER_UNPACK_FORMAT = "Z100A8A8A8A12A12A8aZ100A6A2Z32Z32A8A8Z155"
|
64
|
+
|
65
|
+
# Creates a new PosixHeader from a data stream.
|
66
|
+
def self.new_from_stream(stream)
|
67
|
+
data = stream.read(512)
|
68
|
+
fields = data.unpack(HEADER_UNPACK_FORMAT)
|
69
|
+
name = fields.shift
|
70
|
+
mode = fields.shift.oct
|
71
|
+
uid = fields.shift.oct
|
72
|
+
gid = fields.shift.oct
|
73
|
+
size = fields.shift.oct
|
74
|
+
mtime = fields.shift.oct
|
75
|
+
checksum = fields.shift.oct
|
76
|
+
typeflag = fields.shift
|
77
|
+
linkname = fields.shift
|
78
|
+
magic = fields.shift
|
79
|
+
version = fields.shift.oct
|
80
|
+
uname = fields.shift
|
81
|
+
gname = fields.shift
|
82
|
+
devmajor = fields.shift.oct
|
83
|
+
devminor = fields.shift.oct
|
84
|
+
prefix = fields.shift
|
85
|
+
|
86
|
+
empty = (data == "\0" * 512)
|
87
|
+
|
88
|
+
new(:name => name, :mode => mode, :uid => uid, :gid => gid,
|
89
|
+
:size => size, :mtime => mtime, :checksum => checksum,
|
90
|
+
:typeflag => typeflag, :magic => magic, :version => version,
|
91
|
+
:uname => uname, :gname => gname, :devmajor => devmajor,
|
92
|
+
:devminor => devminor, :prefix => prefix, :empty => empty)
|
93
|
+
end
|
94
|
+
|
95
|
+
# Creates a new PosixHeader. A PosixHeader cannot be created unless the
|
96
|
+
# #name, #size, #prefix, and #mode are provided.
|
97
|
+
def initialize(vals)
|
98
|
+
unless vals[:name] && vals[:size] && vals[:prefix] && vals[:mode]
|
99
|
+
raise ArgumentError
|
100
|
+
end
|
101
|
+
|
102
|
+
vals[:mtime] ||= 0
|
103
|
+
vals[:checksum] ||= ""
|
104
|
+
vals[:typeflag] ||= "0"
|
105
|
+
vals[:magic] ||= "ustar"
|
106
|
+
vals[:version] ||= "00"
|
107
|
+
|
108
|
+
FIELDS.each do |field|
|
109
|
+
instance_variable_set("@#{field}", vals[field.intern])
|
110
|
+
end
|
111
|
+
@empty = vals[:empty]
|
112
|
+
end
|
113
|
+
|
114
|
+
def empty?
|
115
|
+
@empty
|
116
|
+
end
|
117
|
+
|
118
|
+
def to_s
|
119
|
+
update_checksum
|
120
|
+
header(@checksum)
|
121
|
+
end
|
122
|
+
|
123
|
+
# Update the checksum field.
|
124
|
+
def update_checksum
|
125
|
+
hh = header(" " * 8)
|
126
|
+
@checksum = oct(calculate_checksum(hh), 6)
|
127
|
+
end
|
128
|
+
|
129
|
+
private
|
130
|
+
def oct(num, len)
|
131
|
+
if num.nil?
|
132
|
+
"\0" * (len + 1)
|
133
|
+
else
|
134
|
+
"%0#{len}o" % num
|
135
|
+
end
|
136
|
+
end
|
137
|
+
|
138
|
+
def calculate_checksum(hdr)
|
139
|
+
hdr.unpack("C*").inject { |aa, bb| aa + bb }
|
140
|
+
end
|
141
|
+
|
142
|
+
def header(chksum)
|
143
|
+
arr = [name, oct(mode, 7), oct(uid, 7), oct(gid, 7), oct(size, 11),
|
144
|
+
oct(mtime, 11), chksum, " ", typeflag, linkname, magic, version,
|
145
|
+
uname, gname, oct(devmajor, 7), oct(devminor, 7), prefix]
|
146
|
+
str = arr.pack(HEADER_PACK_FORMAT)
|
147
|
+
str + "\0" * ((512 - str.size) % 512)
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
151
|
+
require 'fileutils'
|
152
|
+
require 'find'
|
153
|
+
|
154
|
+
# = Archive::Tar::Minitar 0.5.1
|
155
|
+
# Archive::Tar::Minitar is a pure-Ruby library and command-line
|
156
|
+
# utility that provides the ability to deal with POSIX tar(1) archive
|
157
|
+
# files. The implementation is based heavily on Mauricio Fern�dez's
|
158
|
+
# implementation in rpa-base, but has been reorganised to promote
|
159
|
+
# reuse in other projects.
|
160
|
+
#
|
161
|
+
# This tar class performs a subset of all tar (POSIX tape archive)
|
162
|
+
# operations. We can only deal with typeflags 0, 1, 2, and 5 (see
|
163
|
+
# Archive::Tar::PosixHeader). All other typeflags will be treated as
|
164
|
+
# normal files.
|
165
|
+
#
|
166
|
+
# NOTE::: support for typeflags 1 and 2 is not yet implemented in this
|
167
|
+
# version.
|
168
|
+
#
|
169
|
+
# This release is version 0.5.1. The library can only handle files and
|
170
|
+
# directories at this point. A future version will be expanded to
|
171
|
+
# handle symbolic links and hard links in a portable manner. The
|
172
|
+
# command line utility, minitar, can only create archives, extract
|
173
|
+
# from archives, and list archive contents.
|
174
|
+
#
|
175
|
+
# == Synopsis
|
176
|
+
# Using this library is easy. The simplest case is:
|
177
|
+
#
|
178
|
+
# require 'zlib'
|
179
|
+
# require 'archive/tar/minitar'
|
180
|
+
# include Archive::Tar
|
181
|
+
#
|
182
|
+
# # Packs everything that matches Find.find('tests')
|
183
|
+
# File.open('test.tar', 'wb') { |tar| Minitar.pack('tests', tar) }
|
184
|
+
# # Unpacks 'test.tar' to 'x', creating 'x' if necessary.
|
185
|
+
# Minitar.unpack('test.tar', 'x')
|
186
|
+
#
|
187
|
+
# A gzipped tar can be written with:
|
188
|
+
#
|
189
|
+
# tgz = Zlib::GzipWriter.new(File.open('test.tgz', 'wb'))
|
190
|
+
# # Warning: tgz will be closed!
|
191
|
+
# Minitar.pack('tests', tgz)
|
192
|
+
#
|
193
|
+
# tgz = Zlib::GzipReader.new(File.open('test.tgz', 'rb'))
|
194
|
+
# # Warning: tgz will be closed!
|
195
|
+
# Minitar.unpack(tgz, 'x')
|
196
|
+
#
|
197
|
+
# As the case above shows, one need not write to a file. However, it
|
198
|
+
# will sometimes require that one dive a little deeper into the API,
|
199
|
+
# as in the case of StringIO objects. Note that I'm not providing a
|
200
|
+
# block with Minitar::Output, as Minitar::Output#close automatically
|
201
|
+
# closes both the Output object and the wrapped data stream object.
|
202
|
+
#
|
203
|
+
# begin
|
204
|
+
# sgz = Zlib::GzipWriter.new(StringIO.new(""))
|
205
|
+
# tar = Output.new(sgz)
|
206
|
+
# Find.find('tests') do |entry|
|
207
|
+
# Minitar.pack_file(entry, tar)
|
208
|
+
# end
|
209
|
+
# ensure
|
210
|
+
# # Closes both tar and sgz.
|
211
|
+
# tar.close
|
212
|
+
# end
|
213
|
+
#
|
214
|
+
# == Copyright
|
215
|
+
# Copyright 2004 Mauricio Julio Fern�dez Pradier and Austin Ziegler
|
216
|
+
#
|
217
|
+
# This program is based on and incorporates parts of RPA::Package from
|
218
|
+
# rpa-base (lib/rpa/package.rb and lib/rpa/util.rb) by Mauricio and
|
219
|
+
# has been adapted to be more generic by Austin.
|
220
|
+
#
|
221
|
+
# 'minitar' contains an adaptation of Ruby/ProgressBar by Satoru
|
222
|
+
# Takabayashi <satoru@namazu.org>, copyright 2001 - 2004.
|
223
|
+
#
|
224
|
+
# This program is free software. It may be redistributed and/or
|
225
|
+
# modified under the terms of the GPL version 2 (or later) or Ruby's
|
226
|
+
# licence.
|
227
|
+
module Archive::Tar::Minitar
|
228
|
+
VERSION = "0.5.1"
|
229
|
+
|
230
|
+
# The exception raised when a wrapped data stream class is expected to
|
231
|
+
# respond to #rewind or #pos but does not.
|
232
|
+
class NonSeekableStream < StandardError; end
|
233
|
+
# The exception raised when a block is required for proper operation of
|
234
|
+
# the method.
|
235
|
+
class BlockRequired < ArgumentError; end
|
236
|
+
# The exception raised when operations are performed on a stream that has
|
237
|
+
# previously been closed.
|
238
|
+
class ClosedStream < StandardError; end
|
239
|
+
# The exception raised when a filename exceeds 256 bytes in length,
|
240
|
+
# the maximum supported by the standard Tar format.
|
241
|
+
class FileNameTooLong < StandardError; end
|
242
|
+
# The exception raised when a data stream ends before the amount of data
|
243
|
+
# expected in the archive's PosixHeader.
|
244
|
+
class UnexpectedEOF < StandardError; end
|
245
|
+
|
246
|
+
# The class that writes a tar format archive to a data stream.
|
247
|
+
class Writer
|
248
|
+
# A stream wrapper that can only be written to. Any attempt to read
|
249
|
+
# from this restricted stream will result in a NameError being thrown.
|
250
|
+
class RestrictedStream
|
251
|
+
def initialize(anIO)
|
252
|
+
@io = anIO
|
253
|
+
end
|
254
|
+
|
255
|
+
def write(data)
|
256
|
+
@io.write(data)
|
257
|
+
end
|
258
|
+
end
|
259
|
+
|
260
|
+
# A RestrictedStream that also has a size limit.
|
261
|
+
class BoundedStream < Archive::Tar::Minitar::Writer::RestrictedStream
|
262
|
+
# The exception raised when the user attempts to write more data to
|
263
|
+
# a BoundedStream than has been allocated.
|
264
|
+
class FileOverflow < RuntimeError; end
|
265
|
+
|
266
|
+
# The maximum number of bytes that may be written to this data
|
267
|
+
# stream.
|
268
|
+
attr_reader :limit
|
269
|
+
# The current total number of bytes written to this data stream.
|
270
|
+
attr_reader :written
|
271
|
+
|
272
|
+
def initialize(io, limit)
|
273
|
+
@io = io
|
274
|
+
@limit = limit
|
275
|
+
@written = 0
|
276
|
+
end
|
277
|
+
|
278
|
+
def write(data)
|
279
|
+
raise FileOverflow if (data.size + @written) > @limit
|
280
|
+
@io.write(data)
|
281
|
+
@written += data.size
|
282
|
+
data.size
|
283
|
+
end
|
284
|
+
end
|
285
|
+
|
286
|
+
# With no associated block, +Writer::open+ is a synonym for
|
287
|
+
# +Writer::new+. If the optional code block is given, it will be
|
288
|
+
# passed the new _writer_ as an argument and the Writer object will
|
289
|
+
# automatically be closed when the block terminates. In this instance,
|
290
|
+
# +Writer::open+ returns the value of the block.
|
291
|
+
def self.open(anIO)
|
292
|
+
writer = Writer.new(anIO)
|
293
|
+
|
294
|
+
return writer unless block_given?
|
295
|
+
|
296
|
+
begin
|
297
|
+
res = yield writer
|
298
|
+
ensure
|
299
|
+
writer.close
|
300
|
+
end
|
301
|
+
|
302
|
+
res
|
303
|
+
end
|
304
|
+
|
305
|
+
# Creates and returns a new Writer object.
|
306
|
+
def initialize(anIO)
|
307
|
+
@io = anIO
|
308
|
+
@closed = false
|
309
|
+
end
|
310
|
+
|
311
|
+
# Adds a file to the archive as +name+. +opts+ must contain the
|
312
|
+
# following values:
|
313
|
+
#
|
314
|
+
# <tt>:mode</tt>:: The Unix file permissions mode value.
|
315
|
+
# <tt>:size</tt>:: The size, in bytes.
|
316
|
+
#
|
317
|
+
# +opts+ may contain the following values:
|
318
|
+
#
|
319
|
+
# <tt>:uid</tt>: The Unix file owner user ID number.
|
320
|
+
# <tt>:gid</tt>: The Unix file owner group ID number.
|
321
|
+
# <tt>:mtime</tt>:: The *integer* modification time value.
|
322
|
+
#
|
323
|
+
# It will not be possible to add more than <tt>opts[:size]</tt> bytes
|
324
|
+
# to the file.
|
325
|
+
def add_file_simple(name, opts = {}) # :yields BoundedStream:
|
326
|
+
raise Archive::Tar::Minitar::BlockRequired unless block_given?
|
327
|
+
raise Archive::Tar::ClosedStream if @closed
|
328
|
+
|
329
|
+
name, prefix = split_name(name)
|
330
|
+
|
331
|
+
header = { :name => name, :mode => opts[:mode], :mtime => opts[:mtime],
|
332
|
+
:size => opts[:size], :gid => opts[:gid], :uid => opts[:uid],
|
333
|
+
:prefix => prefix }
|
334
|
+
header = Archive::Tar::PosixHeader.new(header).to_s
|
335
|
+
@io.write(header)
|
336
|
+
|
337
|
+
os = BoundedStream.new(@io, opts[:size])
|
338
|
+
yield os
|
339
|
+
# FIXME: what if an exception is raised in the block?
|
340
|
+
|
341
|
+
min_padding = opts[:size] - os.written
|
342
|
+
@io.write("\0" * min_padding)
|
343
|
+
remainder = (512 - (opts[:size] % 512)) % 512
|
344
|
+
@io.write("\0" * remainder)
|
345
|
+
end
|
346
|
+
|
347
|
+
# Adds a file to the archive as +name+. +opts+ must contain the
|
348
|
+
# following value:
|
349
|
+
#
|
350
|
+
# <tt>:mode</tt>:: The Unix file permissions mode value.
|
351
|
+
#
|
352
|
+
# +opts+ may contain the following values:
|
353
|
+
#
|
354
|
+
# <tt>:uid</tt>: The Unix file owner user ID number.
|
355
|
+
# <tt>:gid</tt>: The Unix file owner group ID number.
|
356
|
+
# <tt>:mtime</tt>:: The *integer* modification time value.
|
357
|
+
#
|
358
|
+
# The file's size will be determined from the amount of data written
|
359
|
+
# to the stream.
|
360
|
+
#
|
361
|
+
# For #add_file to be used, the Archive::Tar::Minitar::Writer must be
|
362
|
+
# wrapping a stream object that is seekable (e.g., it responds to
|
363
|
+
# #pos=). Otherwise, #add_file_simple must be used.
|
364
|
+
#
|
365
|
+
# +opts+ may be modified during the writing to the stream.
|
366
|
+
def add_file(name, opts = {}) # :yields RestrictedStream, +opts+:
|
367
|
+
raise Archive::Tar::Minitar::BlockRequired unless block_given?
|
368
|
+
raise Archive::Tar::Minitar::ClosedStream if @closed
|
369
|
+
raise Archive::Tar::Minitar::NonSeekableStream unless @io.respond_to?(:pos=)
|
370
|
+
|
371
|
+
name, prefix = split_name(name)
|
372
|
+
init_pos = @io.pos
|
373
|
+
@io.write("\0" * 512) # placeholder for the header
|
374
|
+
|
375
|
+
yield RestrictedStream.new(@io), opts
|
376
|
+
# FIXME: what if an exception is raised in the block?
|
377
|
+
|
378
|
+
size = @io.pos - (init_pos + 512)
|
379
|
+
remainder = (512 - (size % 512)) % 512
|
380
|
+
@io.write("\0" * remainder)
|
381
|
+
|
382
|
+
final_pos = @io.pos
|
383
|
+
@io.pos = init_pos
|
384
|
+
|
385
|
+
header = { :name => name, :mode => opts[:mode], :mtime => opts[:mtime],
|
386
|
+
:size => size, :gid => opts[:gid], :uid => opts[:uid],
|
387
|
+
:prefix => prefix }
|
388
|
+
header = Archive::Tar::PosixHeader.new(header).to_s
|
389
|
+
@io.write(header)
|
390
|
+
@io.pos = final_pos
|
391
|
+
end
|
392
|
+
|
393
|
+
# Creates a directory in the tar.
|
394
|
+
def mkdir(name, opts = {})
|
395
|
+
raise ClosedStream if @closed
|
396
|
+
name, prefix = split_name(name)
|
397
|
+
header = { :name => name, :mode => opts[:mode], :typeflag => "5",
|
398
|
+
:size => 0, :gid => opts[:gid], :uid => opts[:uid],
|
399
|
+
:mtime => opts[:mtime], :prefix => prefix }
|
400
|
+
header = Archive::Tar::PosixHeader.new(header).to_s
|
401
|
+
@io.write(header)
|
402
|
+
nil
|
403
|
+
end
|
404
|
+
|
405
|
+
# Passes the #flush method to the wrapped stream, used for buffered
|
406
|
+
# streams.
|
407
|
+
def flush
|
408
|
+
raise ClosedStream if @closed
|
409
|
+
@io.flush if @io.respond_to?(:flush)
|
410
|
+
end
|
411
|
+
|
412
|
+
# Closes the Writer.
|
413
|
+
def close
|
414
|
+
return if @closed
|
415
|
+
@io.write("\0" * 1024)
|
416
|
+
@closed = true
|
417
|
+
end
|
418
|
+
|
419
|
+
private
|
420
|
+
def split_name(name)
|
421
|
+
raise FileNameTooLong if name.size > 256
|
422
|
+
if name.size <= 100
|
423
|
+
prefix = ""
|
424
|
+
else
|
425
|
+
parts = name.split(/\//)
|
426
|
+
newname = parts.pop
|
427
|
+
|
428
|
+
nxt = ""
|
429
|
+
|
430
|
+
loop do
|
431
|
+
nxt = parts.pop
|
432
|
+
break if newname.size + 1 + nxt.size > 100
|
433
|
+
newname = "#{nxt}/#{newname}"
|
434
|
+
end
|
435
|
+
|
436
|
+
prefix = (parts + [nxt]).join("/")
|
437
|
+
|
438
|
+
name = newname
|
439
|
+
|
440
|
+
raise FileNameTooLong if name.size > 100 || prefix.size > 155
|
441
|
+
end
|
442
|
+
return name, prefix
|
443
|
+
end
|
444
|
+
end
|
445
|
+
|
446
|
+
# The class that reads a tar format archive from a data stream. The data
|
447
|
+
# stream may be sequential or random access, but certain features only work
|
448
|
+
# with random access data streams.
|
449
|
+
class Reader
|
450
|
+
# This marks the EntryStream closed for reading without closing the
|
451
|
+
# actual data stream.
|
452
|
+
module InvalidEntryStream
|
453
|
+
def read(len = nil); raise ClosedStream; end
|
454
|
+
def getc; raise ClosedStream; end
|
455
|
+
def rewind; raise ClosedStream; end
|
456
|
+
end
|
457
|
+
|
458
|
+
# EntryStreams are pseudo-streams on top of the main data stream.
|
459
|
+
class EntryStream
|
460
|
+
Archive::Tar::PosixHeader::FIELDS.each do |field|
|
461
|
+
attr_reader field.intern
|
462
|
+
end
|
463
|
+
|
464
|
+
def initialize(header, anIO)
|
465
|
+
@io = anIO
|
466
|
+
@name = header.name
|
467
|
+
@mode = header.mode
|
468
|
+
@uid = header.uid
|
469
|
+
@gid = header.gid
|
470
|
+
@size = header.size
|
471
|
+
@mtime = header.mtime
|
472
|
+
@checksum = header.checksum
|
473
|
+
@typeflag = header.typeflag
|
474
|
+
@linkname = header.linkname
|
475
|
+
@magic = header.magic
|
476
|
+
@version = header.version
|
477
|
+
@uname = header.uname
|
478
|
+
@gname = header.gname
|
479
|
+
@devmajor = header.devmajor
|
480
|
+
@devminor = header.devminor
|
481
|
+
@prefix = header.prefix
|
482
|
+
@read = 0
|
483
|
+
@orig_pos = @io.pos
|
484
|
+
end
|
485
|
+
|
486
|
+
# Reads +len+ bytes (or all remaining data) from the entry. Returns
|
487
|
+
# +nil+ if there is no more data to read.
|
488
|
+
def read(len = nil)
|
489
|
+
return nil if @read >= @size
|
490
|
+
len ||= @size - @read
|
491
|
+
max_read = [len, @size - @read].min
|
492
|
+
ret = @io.read(max_read)
|
493
|
+
@read += ret.size
|
494
|
+
ret
|
495
|
+
end
|
496
|
+
|
497
|
+
# Reads one byte from the entry. Returns +nil+ if there is no more data
|
498
|
+
# to read.
|
499
|
+
def getc
|
500
|
+
return nil if @read >= @size
|
501
|
+
ret = @io.getc
|
502
|
+
@read += 1 if ret
|
503
|
+
ret
|
504
|
+
end
|
505
|
+
|
506
|
+
# Returns +true+ if the entry represents a directory.
|
507
|
+
def directory?
|
508
|
+
@typeflag == "5"
|
509
|
+
end
|
510
|
+
alias_method :directory, :directory?
|
511
|
+
|
512
|
+
# Returns +true+ if the entry represents a plain file.
|
513
|
+
def file?
|
514
|
+
@typeflag == "0"
|
515
|
+
end
|
516
|
+
alias_method :file, :file?
|
517
|
+
|
518
|
+
# Returns +true+ if the current read pointer is at the end of the
|
519
|
+
# EntryStream data.
|
520
|
+
def eof?
|
521
|
+
@read >= @size
|
522
|
+
end
|
523
|
+
|
524
|
+
# Returns the current read pointer in the EntryStream.
|
525
|
+
def pos
|
526
|
+
@read
|
527
|
+
end
|
528
|
+
|
529
|
+
# Sets the current read pointer to the beginning of the EntryStream.
|
530
|
+
def rewind
|
531
|
+
raise NonSeekableStream unless @io.respond_to?(:pos=)
|
532
|
+
@io.pos = @orig_pos
|
533
|
+
@read = 0
|
534
|
+
end
|
535
|
+
|
536
|
+
def bytes_read
|
537
|
+
@read
|
538
|
+
end
|
539
|
+
|
540
|
+
# Returns the full and proper name of the entry.
|
541
|
+
def full_name
|
542
|
+
if @prefix != ""
|
543
|
+
File.join(@prefix, @name)
|
544
|
+
else
|
545
|
+
@name
|
546
|
+
end
|
547
|
+
end
|
548
|
+
|
549
|
+
# Closes the entry.
|
550
|
+
def close
|
551
|
+
invalidate
|
552
|
+
end
|
553
|
+
|
554
|
+
private
|
555
|
+
def invalidate
|
556
|
+
extend InvalidEntryStream
|
557
|
+
end
|
558
|
+
end
|
559
|
+
|
560
|
+
# With no associated block, +Reader::open+ is a synonym for
|
561
|
+
# +Reader::new+. If the optional code block is given, it will be passed
|
562
|
+
# the new _writer_ as an argument and the Reader object will
|
563
|
+
# automatically be closed when the block terminates. In this instance,
|
564
|
+
# +Reader::open+ returns the value of the block.
|
565
|
+
def self.open(anIO)
|
566
|
+
reader = Reader.new(anIO)
|
567
|
+
|
568
|
+
return reader unless block_given?
|
569
|
+
|
570
|
+
begin
|
571
|
+
res = yield reader
|
572
|
+
ensure
|
573
|
+
reader.close
|
574
|
+
end
|
575
|
+
|
576
|
+
res
|
577
|
+
end
|
578
|
+
|
579
|
+
# Creates and returns a new Reader object.
|
580
|
+
def initialize(anIO)
|
581
|
+
@io = anIO
|
582
|
+
@init_pos = anIO.pos
|
583
|
+
end
|
584
|
+
|
585
|
+
# Iterates through each entry in the data stream.
|
586
|
+
def each(&block)
|
587
|
+
each_entry(&block)
|
588
|
+
end
|
589
|
+
|
590
|
+
# Resets the read pointer to the beginning of data stream. Do not call
|
591
|
+
# this during a #each or #each_entry iteration. This only works with
|
592
|
+
# random access data streams that respond to #rewind and #pos.
|
593
|
+
def rewind
|
594
|
+
if @init_pos == 0
|
595
|
+
raise NonSeekableStream unless @io.respond_to?(:rewind)
|
596
|
+
@io.rewind
|
597
|
+
else
|
598
|
+
raise NonSeekableStream unless @io.respond_to?(:pos=)
|
599
|
+
@io.pos = @init_pos
|
600
|
+
end
|
601
|
+
end
|
602
|
+
|
603
|
+
# Iterates through each entry in the data stream.
|
604
|
+
def each_entry
|
605
|
+
loop do
|
606
|
+
return if @io.eof?
|
607
|
+
|
608
|
+
header = Archive::Tar::PosixHeader.new_from_stream(@io)
|
609
|
+
return if header.empty?
|
610
|
+
|
611
|
+
entry = EntryStream.new(header, @io)
|
612
|
+
size = entry.size
|
613
|
+
|
614
|
+
yield entry
|
615
|
+
|
616
|
+
skip = (512 - (size % 512)) % 512
|
617
|
+
|
618
|
+
if @io.respond_to?(:seek)
|
619
|
+
# avoid reading...
|
620
|
+
@io.seek(size - entry.bytes_read, IO::SEEK_CUR)
|
621
|
+
else
|
622
|
+
pending = size - entry.bytes_read
|
623
|
+
while pending > 0
|
624
|
+
bread = @io.read([pending, 4096].min).size
|
625
|
+
raise UnexpectedEOF if @io.eof?
|
626
|
+
pending -= bread
|
627
|
+
end
|
628
|
+
end
|
629
|
+
@io.read(skip) # discard trailing zeros
|
630
|
+
# make sure nobody can use #read, #getc or #rewind anymore
|
631
|
+
entry.close
|
632
|
+
end
|
633
|
+
end
|
634
|
+
|
635
|
+
def close
|
636
|
+
end
|
637
|
+
end
|
638
|
+
|
639
|
+
# Wraps a Archive::Tar::Minitar::Reader with convenience methods and
|
640
|
+
# wrapped stream management; Input only works with random access data
|
641
|
+
# streams. See Input::new for details.
|
642
|
+
class Input
|
643
|
+
include Enumerable
|
644
|
+
|
645
|
+
# With no associated block, +Input::open+ is a synonym for
|
646
|
+
# +Input::new+. If the optional code block is given, it will be passed
|
647
|
+
# the new _writer_ as an argument and the Input object will
|
648
|
+
# automatically be closed when the block terminates. In this instance,
|
649
|
+
# +Input::open+ returns the value of the block.
|
650
|
+
def self.open(input)
|
651
|
+
stream = Input.new(input)
|
652
|
+
return stream unless block_given?
|
653
|
+
|
654
|
+
begin
|
655
|
+
res = yield stream
|
656
|
+
ensure
|
657
|
+
stream.close
|
658
|
+
end
|
659
|
+
|
660
|
+
res
|
661
|
+
end
|
662
|
+
|
663
|
+
# Creates a new Input object. If +input+ is a stream object that responds
|
664
|
+
# to #read), then it will simply be wrapped. Otherwise, one will be
|
665
|
+
# created and opened using Kernel#open. When Input#close is called, the
|
666
|
+
# stream object wrapped will be closed.
|
667
|
+
def initialize(input)
|
668
|
+
if input.respond_to?(:read)
|
669
|
+
@io = input
|
670
|
+
else
|
671
|
+
@io = open(input, "rb")
|
672
|
+
end
|
673
|
+
@tarreader = Archive::Tar::Minitar::Reader.new(@io)
|
674
|
+
end
|
675
|
+
|
676
|
+
# Iterates through each entry and rewinds to the beginning of the stream
|
677
|
+
# when finished.
|
678
|
+
def each(&block)
|
679
|
+
@tarreader.each { |entry| yield entry }
|
680
|
+
ensure
|
681
|
+
@tarreader.rewind
|
682
|
+
end
|
683
|
+
|
684
|
+
# Extracts the current +entry+ to +destdir+. If a block is provided, it
|
685
|
+
# yields an +action+ Symbol, the full name of the file being extracted
|
686
|
+
# (+name+), and a Hash of statistical information (+stats+).
|
687
|
+
#
|
688
|
+
# The +action+ will be one of:
|
689
|
+
# <tt>:dir</tt>:: The +entry+ is a directory.
|
690
|
+
# <tt>:file_start</tt>:: The +entry+ is a file; the extract of the
|
691
|
+
# file is just beginning.
|
692
|
+
# <tt>:file_progress</tt>:: Yielded every 4096 bytes during the extract
|
693
|
+
# of the +entry+.
|
694
|
+
# <tt>:file_done</tt>:: Yielded when the +entry+ is completed.
|
695
|
+
#
|
696
|
+
# The +stats+ hash contains the following keys:
|
697
|
+
# <tt>:current</tt>:: The current total number of bytes read in the
|
698
|
+
# +entry+.
|
699
|
+
# <tt>:currinc</tt>:: The current number of bytes read in this read
|
700
|
+
# cycle.
|
701
|
+
# <tt>:entry</tt>:: The entry being extracted; this is a
|
702
|
+
# Reader::EntryStream, with all methods thereof.
|
703
|
+
def extract_entry(destdir, entry) # :yields action, name, stats:
|
704
|
+
stats = {
|
705
|
+
:current => 0,
|
706
|
+
:currinc => 0,
|
707
|
+
:entry => entry
|
708
|
+
}
|
709
|
+
|
710
|
+
if entry.directory?
|
711
|
+
dest = File.join(destdir, entry.full_name)
|
712
|
+
|
713
|
+
yield :dir, entry.full_name, stats if block_given?
|
714
|
+
|
715
|
+
if Archive::Tar::Minitar.dir?(dest)
|
716
|
+
begin
|
717
|
+
FileUtils.chmod(entry.mode, dest)
|
718
|
+
rescue Exception
|
719
|
+
nil
|
720
|
+
end
|
721
|
+
else
|
722
|
+
FileUtils.mkdir_p(dest, :mode => entry.mode)
|
723
|
+
FileUtils.chmod(entry.mode, dest)
|
724
|
+
end
|
725
|
+
|
726
|
+
fsync_dir(dest)
|
727
|
+
fsync_dir(File.join(dest, ".."))
|
728
|
+
return
|
729
|
+
else # it's a file
|
730
|
+
destdir = File.join(destdir, File.dirname(entry.full_name))
|
731
|
+
FileUtils.mkdir_p(destdir, :mode => 0755)
|
732
|
+
|
733
|
+
destfile = File.join(destdir, File.basename(entry.full_name))
|
734
|
+
FileUtils.chmod(0600, destfile) rescue nil # Errno::ENOENT
|
735
|
+
|
736
|
+
yield :file_start, entry.full_name, stats if block_given?
|
737
|
+
|
738
|
+
File.open(destfile, "wb", entry.mode) do |os|
|
739
|
+
loop do
|
740
|
+
data = entry.read(4096)
|
741
|
+
break unless data
|
742
|
+
|
743
|
+
stats[:currinc] = os.write(data)
|
744
|
+
stats[:current] += stats[:currinc]
|
745
|
+
|
746
|
+
yield :file_progress, entry.full_name, stats if block_given?
|
747
|
+
end
|
748
|
+
os.fsync
|
749
|
+
end
|
750
|
+
|
751
|
+
FileUtils.chmod(entry.mode, destfile)
|
752
|
+
fsync_dir(File.dirname(destfile))
|
753
|
+
fsync_dir(File.join(File.dirname(destfile), ".."))
|
754
|
+
|
755
|
+
yield :file_done, entry.full_name, stats if block_given?
|
756
|
+
end
|
757
|
+
end
|
758
|
+
|
759
|
+
# Returns the Reader object for direct access.
|
760
|
+
def tar
|
761
|
+
@tarreader
|
762
|
+
end
|
763
|
+
|
764
|
+
# Closes the Reader object and the wrapped data stream.
|
765
|
+
def close
|
766
|
+
@io.close
|
767
|
+
@tarreader.close
|
768
|
+
end
|
769
|
+
|
770
|
+
private
|
771
|
+
def fsync_dir(dirname)
|
772
|
+
# make sure this hits the disc
|
773
|
+
dir = open(dirname, 'rb')
|
774
|
+
dir.fsync
|
775
|
+
rescue # ignore IOError if it's an unpatched (old) Ruby
|
776
|
+
nil
|
777
|
+
ensure
|
778
|
+
dir.close if dir rescue nil
|
779
|
+
end
|
780
|
+
end
|
781
|
+
|
782
|
+
# Wraps a Archive::Tar::Minitar::Writer with convenience methods and
|
783
|
+
# wrapped stream management; Output only works with random access data
|
784
|
+
# streams. See Output::new for details.
|
785
|
+
class Output
|
786
|
+
# With no associated block, +Output::open+ is a synonym for
|
787
|
+
# +Output::new+. If the optional code block is given, it will be passed
|
788
|
+
# the new _writer_ as an argument and the Output object will
|
789
|
+
# automatically be closed when the block terminates. In this instance,
|
790
|
+
# +Output::open+ returns the value of the block.
|
791
|
+
def self.open(output)
|
792
|
+
stream = Output.new(output)
|
793
|
+
return stream unless block_given?
|
794
|
+
|
795
|
+
begin
|
796
|
+
res = yield stream
|
797
|
+
ensure
|
798
|
+
stream.close
|
799
|
+
end
|
800
|
+
|
801
|
+
res
|
802
|
+
end
|
803
|
+
|
804
|
+
# Creates a new Output object. If +output+ is a stream object that
|
805
|
+
# responds to #read), then it will simply be wrapped. Otherwise, one will
|
806
|
+
# be created and opened using Kernel#open. When Output#close is called,
|
807
|
+
# the stream object wrapped will be closed.
|
808
|
+
def initialize(output)
|
809
|
+
if output.respond_to?(:write)
|
810
|
+
@io = output
|
811
|
+
else
|
812
|
+
@io = ::File.open(output, "wb")
|
813
|
+
end
|
814
|
+
@tarwriter = Archive::Tar::Minitar::Writer.new(@io)
|
815
|
+
end
|
816
|
+
|
817
|
+
# Returns the Writer object for direct access.
|
818
|
+
def tar
|
819
|
+
@tarwriter
|
820
|
+
end
|
821
|
+
|
822
|
+
# Closes the Writer object and the wrapped data stream.
|
823
|
+
def close
|
824
|
+
@tarwriter.close
|
825
|
+
@io.close
|
826
|
+
end
|
827
|
+
end
|
828
|
+
|
829
|
+
class << self
|
830
|
+
# Tests if +path+ refers to a directory. Fixes an apparently
|
831
|
+
# corrupted <tt>stat()</tt> call on Windows.
|
832
|
+
def dir?(path)
|
833
|
+
File.directory?((path[-1] == ?/) ? path : "#{path}/")
|
834
|
+
end
|
835
|
+
|
836
|
+
# A convenience method for wrapping Archive::Tar::Minitar::Input.open
|
837
|
+
# (mode +r+) and Archive::Tar::Minitar::Output.open (mode +w+). No other
|
838
|
+
# modes are currently supported.
|
839
|
+
def open(dest, mode = "r", &block)
|
840
|
+
case mode
|
841
|
+
when "r"
|
842
|
+
Input.open(dest, &block)
|
843
|
+
when "w"
|
844
|
+
Output.open(dest, &block)
|
845
|
+
else
|
846
|
+
raise "Unknown open mode for Archive::Tar::Minitar.open."
|
847
|
+
end
|
848
|
+
end
|
849
|
+
|
850
|
+
# A convenience method to packs the file provided. +entry+ may either be
|
851
|
+
# a filename (in which case various values for the file (see below) will
|
852
|
+
# be obtained from <tt>File#stat(entry)</tt> or a Hash with the fields:
|
853
|
+
#
|
854
|
+
# <tt>:name</tt>:: The filename to be packed into the tarchive.
|
855
|
+
# *REQUIRED*.
|
856
|
+
# <tt>:mode</tt>:: The mode to be applied.
|
857
|
+
# <tt>:uid</tt>:: The user owner of the file. (Ignored on Windows.)
|
858
|
+
# <tt>:gid</tt>:: The group owner of the file. (Ignored on Windows.)
|
859
|
+
# <tt>:mtime</tt>:: The modification Time of the file.
|
860
|
+
#
|
861
|
+
# During packing, if a block is provided, #pack_file yields an +action+
|
862
|
+
# Symol, the full name of the file being packed, and a Hash of
|
863
|
+
# statistical information, just as with
|
864
|
+
# Archive::Tar::Minitar::Input#extract_entry.
|
865
|
+
#
|
866
|
+
# The +action+ will be one of:
|
867
|
+
# <tt>:dir</tt>:: The +entry+ is a directory.
|
868
|
+
# <tt>:file_start</tt>:: The +entry+ is a file; the extract of the
|
869
|
+
# file is just beginning.
|
870
|
+
# <tt>:file_progress</tt>:: Yielded every 4096 bytes during the extract
|
871
|
+
# of the +entry+.
|
872
|
+
# <tt>:file_done</tt>:: Yielded when the +entry+ is completed.
|
873
|
+
#
|
874
|
+
# The +stats+ hash contains the following keys:
|
875
|
+
# <tt>:current</tt>:: The current total number of bytes read in the
|
876
|
+
# +entry+.
|
877
|
+
# <tt>:currinc</tt>:: The current number of bytes read in this read
|
878
|
+
# cycle.
|
879
|
+
# <tt>:name</tt>:: The filename to be packed into the tarchive.
|
880
|
+
# *REQUIRED*.
|
881
|
+
# <tt>:mode</tt>:: The mode to be applied.
|
882
|
+
# <tt>:uid</tt>:: The user owner of the file. (+nil+ on Windows.)
|
883
|
+
# <tt>:gid</tt>:: The group owner of the file. (+nil+ on Windows.)
|
884
|
+
# <tt>:mtime</tt>:: The modification Time of the file.
|
885
|
+
def pack_file(entry, outputter) #:yields action, name, stats:
|
886
|
+
outputter = outputter.tar if outputter.kind_of?(Archive::Tar::Minitar::Output)
|
887
|
+
|
888
|
+
stats = {}
|
889
|
+
|
890
|
+
if entry.kind_of?(Hash)
|
891
|
+
name = entry[:name]
|
892
|
+
|
893
|
+
entry.each { |kk, vv| stats[kk] = vv unless vv.nil? }
|
894
|
+
else
|
895
|
+
name = entry
|
896
|
+
end
|
897
|
+
|
898
|
+
name = name.sub(%r{\./}, '')
|
899
|
+
stat = File.stat(name)
|
900
|
+
stats[:mode] ||= stat.mode
|
901
|
+
stats[:mtime] ||= stat.mtime
|
902
|
+
stats[:size] = stat.size
|
903
|
+
|
904
|
+
if RUBY_PLATFORM =~ /win32/
|
905
|
+
stats[:uid] = nil
|
906
|
+
stats[:gid] = nil
|
907
|
+
else
|
908
|
+
stats[:uid] ||= stat.uid
|
909
|
+
stats[:gid] ||= stat.gid
|
910
|
+
end
|
911
|
+
|
912
|
+
case
|
913
|
+
when File.file?(name)
|
914
|
+
outputter.add_file_simple(name, stats) do |os|
|
915
|
+
stats[:current] = 0
|
916
|
+
yield :file_start, name, stats if block_given?
|
917
|
+
File.open(name, "rb") do |ff|
|
918
|
+
until ff.eof?
|
919
|
+
stats[:currinc] = os.write(ff.read(4096))
|
920
|
+
stats[:current] += stats[:currinc]
|
921
|
+
yield :file_progress, name, stats if block_given?
|
922
|
+
end
|
923
|
+
end
|
924
|
+
yield :file_done, name, stats if block_given?
|
925
|
+
end
|
926
|
+
when dir?(name)
|
927
|
+
yield :dir, name, stats if block_given?
|
928
|
+
outputter.mkdir(name, stats)
|
929
|
+
else
|
930
|
+
raise "Don't yet know how to pack this type of file."
|
931
|
+
end
|
932
|
+
end
|
933
|
+
|
934
|
+
# A convenience method to pack files specified by +src+ into +dest+. If
|
935
|
+
# +src+ is an Array, then each file detailed therein will be packed into
|
936
|
+
# the resulting Archive::Tar::Minitar::Output stream; if +recurse_dirs+
|
937
|
+
# is true, then directories will be recursed.
|
938
|
+
#
|
939
|
+
# If +src+ is an Array, it will be treated as the argument to Find.find;
|
940
|
+
# all files matching will be packed.
|
941
|
+
def pack(src, dest, recurse_dirs = true, &block)
|
942
|
+
Output.open(dest) do |outp|
|
943
|
+
if src.kind_of?(Array)
|
944
|
+
src.each do |entry|
|
945
|
+
pack_file(entry, outp, &block)
|
946
|
+
if dir?(entry) and recurse_dirs
|
947
|
+
Dir["#{entry}/**/**"].each do |ee|
|
948
|
+
pack_file(ee, outp, &block)
|
949
|
+
end
|
950
|
+
end
|
951
|
+
end
|
952
|
+
else
|
953
|
+
Find.find(src) do |entry|
|
954
|
+
pack_file(entry, outp, &block)
|
955
|
+
end
|
956
|
+
end
|
957
|
+
end
|
958
|
+
end
|
959
|
+
|
960
|
+
# A convenience method to unpack files from +src+ into the directory
|
961
|
+
# specified by +dest+. Only those files named explicitly in +files+
|
962
|
+
# will be extracted.
|
963
|
+
def unpack(src, dest, files = [], &block)
|
964
|
+
Input.open(src) do |inp|
|
965
|
+
if File.exist?(dest) and (not dir?(dest))
|
966
|
+
raise "Can't unpack to a non-directory."
|
967
|
+
elsif not File.exist?(dest)
|
968
|
+
FileUtils.mkdir_p(dest)
|
969
|
+
end
|
970
|
+
|
971
|
+
inp.each do |entry|
|
972
|
+
if files.empty? or files.include?(entry.full_name)
|
973
|
+
inp.extract_entry(dest, entry, &block)
|
974
|
+
end
|
975
|
+
end
|
976
|
+
end
|
977
|
+
end
|
978
|
+
end
|
979
|
+
end
|