facets 2.7.0 → 2.8.0
Sign up to get free protection for your applications and to get access to all the features.
- data/HISTORY.rdoc +135 -294
- data/MANIFEST +40 -91
- data/NOTES +1 -1
- data/README.rdoc +10 -8
- data/Rakefile +11 -34
- data/demo/{hook.rd → hook.rdoc} +2 -0
- data/demo/{scenario_require.rd → scenario_require.rdoc} +3 -0
- data/lib/core/facets-live.rb +7 -5
- data/lib/core/facets.rb +379 -359
- data/lib/core/facets/array/conjoin.rb +2 -2
- data/lib/core/facets/array/pad.rb +1 -1
- data/lib/core/facets/array/recursively.rb +2 -2
- data/lib/core/facets/array/splice.rb +1 -1
- data/lib/core/facets/binding/caller.rb +2 -4
- data/lib/core/facets/comparable/comparable.rb +2 -2
- data/lib/core/facets/dir/ascend.rb +3 -0
- data/lib/core/facets/dir/recurse.rb +4 -0
- data/lib/core/facets/duplicable.rb +6 -8
- data/lib/core/facets/enumerable/count.rb +22 -13
- data/lib/core/facets/enumerable/map_detect.rb +28 -0
- data/lib/core/facets/enumerable/mash.rb +13 -5
- data/lib/core/facets/enumerable/per.rb +3 -1
- data/lib/core/facets/hash/count.rb +14 -0
- data/lib/core/facets/hash/data.rb +14 -0
- data/lib/core/facets/kernel/__method__.rb +1 -1
- data/lib/core/facets/kernel/d.rb +9 -8
- data/lib/core/facets/kernel/eigenclass.rb +20 -0
- data/lib/core/facets/kernel/extend.rb +10 -0
- data/lib/core/facets/kernel/instance_class.rb +1 -0
- data/lib/core/facets/kernel/instance_variables.rb +6 -6
- data/lib/core/facets/kernel/meta_alias.rb +18 -0
- data/lib/core/facets/kernel/meta_class.rb +17 -0
- data/lib/core/facets/kernel/meta_def.rb +18 -0
- data/lib/core/facets/kernel/meta_eval.rb +18 -0
- data/lib/core/facets/kernel/object_hexid.rb +21 -6
- data/lib/core/facets/kernel/object_state.rb +4 -2
- data/lib/core/facets/kernel/populate.rb +3 -1
- data/lib/core/facets/kernel/with.rb +1 -1
- data/lib/core/facets/metaid.rb +6 -93
- data/lib/core/facets/module/class_def.rb +2 -0
- data/lib/core/facets/module/extend.rb +10 -11
- data/lib/core/facets/module/is.rb +5 -5
- data/lib/core/facets/module/module_def.rb +31 -0
- data/lib/core/facets/string/camelcase.rb +14 -12
- data/lib/core/facets/string/cleanlines.rb +35 -0
- data/lib/core/facets/string/edit_distance.rb +62 -0
- data/lib/core/facets/string/indent.rb +86 -4
- data/lib/core/facets/string/index_all.rb +24 -0
- data/lib/core/facets/string/lines.rb +3 -6
- data/lib/core/facets/string/margin.rb +2 -1
- data/lib/core/facets/string/newlines.rb +35 -0
- data/lib/core/facets/string/op_div.rb +14 -0
- data/lib/core/facets/string/range.rb +2 -22
- data/lib/core/facets/string/range_all.rb +1 -0
- data/lib/core/facets/string/range_of_line.rb +1 -0
- data/lib/core/facets/string/similarity.rb +92 -0
- data/lib/core/facets/string/start_with.rb +6 -6
- data/lib/core/facets/string/titlecase.rb +1 -1
- data/lib/more/facets/basicobject.rb +16 -15
- data/lib/more/facets/blankslate.rb +8 -0
- data/lib/more/facets/class_extend.rb +126 -1
- data/lib/more/facets/continuation.rb +53 -54
- data/lib/more/facets/dictionary.rb +9 -63
- data/lib/more/facets/erb.rb +63 -0
- data/lib/more/facets/filelist.rb +5 -5
- data/lib/more/facets/hashbuilder.rb +101 -0
- data/lib/more/facets/inheritor.rb +36 -45
- data/lib/more/facets/ini.rb +267 -0
- data/lib/more/facets/instance_eval.rb +4 -4
- data/lib/more/facets/ioredirect.rb +7 -60
- data/lib/more/facets/linkedlist.rb +195 -0
- data/lib/more/facets/matcher.rb +140 -0
- data/lib/more/facets/memoizer.rb +64 -0
- data/lib/more/facets/methodspace.rb +9 -4
- data/lib/more/facets/module/class_extend.rb +2 -121
- data/lib/more/facets/ostruct.rb +9 -9
- data/lib/more/facets/pathlist.rb +1 -9
- data/lib/more/facets/pathname.rb +11 -4
- data/lib/more/facets/plugin_manager.rb +50 -0
- data/lib/more/facets/random.rb +25 -3
- data/lib/more/facets/roman.rb +174 -0
- data/lib/more/facets/semaphore.rb +92 -0
- data/lib/more/facets/shellwords.rb +21 -48
- data/lib/more/facets/succ.rb +1 -1
- data/meta/{modified → released} +0 -0
- data/meta/repository +1 -0
- data/meta/suite +1 -0
- data/meta/version +1 -1
- data/script/conflicts +63 -0
- data/script/methods +49 -0
- data/test/core/binding/test_caller.rb +11 -4
- data/test/core/enumerable/test_count.rb +19 -10
- data/test/core/enumerable/test_map_detect.rb +75 -0
- data/test/core/enumerable/test_take.rb +1 -1
- data/test/core/kernel/test_object_hexid.rb +2 -1
- data/test/core/proc/test_to_method.rb +1 -1
- data/test/core/string/test_cleanlines.rb +11 -0
- data/test/core/string/test_indent.rb +66 -4
- data/test/core/string/test_lines.rb +2 -1
- data/test/core/string/test_newlines.rb +13 -0
- data/test/core/time/test_change.rb +1 -1
- data/test/core/time/test_stamp.rb +4 -7
- data/test/core/unboundmethod/test_name.rb +1 -1
- data/test/more/test_basicobject.rb +1 -20
- data/test/more/test_class_extend.rb +7 -0
- data/test/more/test_continuation.rb +8 -6
- data/test/more/test_inheritor.rb +12 -6
- data/test/more/test_random.rb +19 -10
- data/test/more/test_shellwords.rb +33 -0
- metadata +60 -31
- data/TODO +0 -5
- data/doc/README.core +0 -102
- data/doc/README.more +0 -61
- data/doc/manual/about.rb +0 -47
- data/doc/manual/annotations.rdoc +0 -60
- data/doc/manual/associations.rdoc +0 -55
- data/doc/manual/blockups.rdoc +0 -101
- data/doc/manual/capsule.rdoc +0 -34
- data/doc/manual/command.rdoc +0 -177
- data/doc/manual/core.rdoc +0 -37
- data/doc/manual/faq.rdoc +0 -32
- data/doc/manual/typecast.html +0 -112
- data/lib/more/facets/capsule.rb +0 -258
- data/lib/more/facets/coroutine.rb +0 -159
- data/lib/more/facets/enumerablepass.rb +0 -3
- data/lib/more/facets/fileable.rb +0 -162
- data/lib/more/facets/progressbar.rb +0 -253
- data/lib/more/facets/recorder.rb +0 -108
- data/meta/releases +0 -14
- data/test/more/test_coroutine.rb +0 -46
data/HISTORY.rdoc
CHANGED
@@ -1,4 +1,61 @@
|
|
1
|
-
= Facets History
|
1
|
+
= Facets Release History
|
2
|
+
|
3
|
+
|
4
|
+
== 2.8.0 / 2009-11-05
|
5
|
+
|
6
|
+
acets 2.8 effectively completes the MORE library clean-up which peaked
|
7
|
+
with the previous 2.7 release. Another eight libraries have been deprecated,
|
8
|
+
a few of them spun-off to a separate project. However, this verison also
|
9
|
+
reverts a few of the deprecations made in the last version. These libs
|
10
|
+
will remain in Facets's MORE library for the forseeable future.
|
11
|
+
|
12
|
+
This version effectively concludes the MORE library clean-up. The next, and
|
13
|
+
last version before Facets 3.0, will focus on "auditing" the CORE library.
|
14
|
+
|
15
|
+
Changes:
|
16
|
+
|
17
|
+
* 6 Libraries "Undeprecated":
|
18
|
+
|
19
|
+
* ini.rb
|
20
|
+
* linkedlist.rb
|
21
|
+
* matcher.rb
|
22
|
+
* memoizer.rb
|
23
|
+
* roman.rb
|
24
|
+
* semaphore.rb
|
25
|
+
|
26
|
+
* 5 Libraries Deprecated:
|
27
|
+
|
28
|
+
* fileable.rb (too esoteric)
|
29
|
+
* ioredirect.rb (needs better implementation)
|
30
|
+
* coroutine.rb (because of Fiber)
|
31
|
+
* capsule.rb (may be spun-off)
|
32
|
+
* recorder.rb (may be spun-off)
|
33
|
+
|
34
|
+
* 3 Libraries Spun-Off and Deprecated:
|
35
|
+
|
36
|
+
* ansicode.rb ansi
|
37
|
+
* progressbar.rb ansi
|
38
|
+
* logger.rb ansi
|
39
|
+
|
40
|
+
* Additonal Enhancements:
|
41
|
+
|
42
|
+
* Kernel#extend can now take a block
|
43
|
+
* Fixed kernel#d so it is useable
|
44
|
+
* Added Range#at_rand (thanks to Tyler Rick)
|
45
|
+
* Added Enumerable#map_detect (thanks to Scott Taylor)
|
46
|
+
* String#/ calls File.join
|
47
|
+
* Added String#newlines and String#cleanlines
|
48
|
+
* String#titlecase includes apostrophe in words
|
49
|
+
* BasicObject/BlankSlate is more compliant with 1.9.1 design
|
50
|
+
* Enumerable#count can take multiple items, treats as logical Or
|
51
|
+
* Class#class_extend extends class level, not class_eval
|
52
|
+
* Integer#succ(n) becomes Fixnum#succ(n), succ.rb
|
53
|
+
* Complete rewrite of Inheritor
|
54
|
+
* Shellwords extensions have been reworked
|
55
|
+
* Added String#similarity
|
56
|
+
* Added Levenshtein String#edit_distance method
|
57
|
+
* And other minor improvements (some thanks to ccjr)
|
58
|
+
|
2
59
|
|
3
60
|
== 2.7.0 / 2009-08-01
|
4
61
|
|
@@ -51,7 +108,7 @@ as separate gems (or soon will be).
|
|
51
108
|
semaphore.rb semaphore
|
52
109
|
pqueue.rb pqueue
|
53
110
|
censor.rb language
|
54
|
-
|
111
|
+
matcher.rb language
|
55
112
|
basex.rb radix
|
56
113
|
minitar.rb archive-tar-minitar -or- folio
|
57
114
|
|
@@ -76,7 +133,6 @@ from Facets too (in particular the ansi libraries).
|
|
76
133
|
openhash.rb openhash
|
77
134
|
openmodule.rb openmodule
|
78
135
|
fileable.rb fileable
|
79
|
-
expirable.rb expirable
|
80
136
|
enumerablepass.rb enumargs
|
81
137
|
|
82
138
|
* Deprecations Without Current Replacement
|
@@ -660,306 +716,98 @@ Changes:
|
|
660
716
|
* Deprecated paramix.rb. A better way is to use a capitialized methods. (Perhaps a lib for that?)
|
661
717
|
* Brought back a few web related libs, htmlfilter.rb and cssfilter.rb in particular.
|
662
718
|
* camelcase and snakecase are core extensions. For specialized styles use String#style in style.rb.
|
663
|
-
* This was a fairly large and fast-paced update, so unfortunately not all changes are listed this time.
|
664
|
-
|
665
|
-
* Moved test/test_one_nine.rb to test/test_ruby.rb.
|
666
|
-
* Removed use of Console namepspace. command.rb and arguments.rb now use CLI.
|
667
719
|
* Renamed ArgVector to CLI::Arguments
|
668
|
-
* Removed rdoc script (will replace in future).
|
669
|
-
* Added ri generation to setup.rb.
|
670
|
-
* Added site/doc soft link to doc/html.
|
671
720
|
* Moved one_nine.rb to ruby.rb
|
672
|
-
*
|
673
|
-
*
|
674
|
-
|
675
|
-
* Added the new split-off tests.
|
676
|
-
* Splinter remaining clumped tests.
|
677
|
-
* Removed test_array.
|
678
|
-
* Splintered array tests.
|
679
|
-
* Added some finer-grain to core method.
|
680
|
-
* Some deprecated libs added to work/old.
|
681
|
-
* Tests are now to th epoint of passing again. Yea!
|
682
|
-
|
683
|
-
* Continued touching up tests.
|
684
|
-
* Moved some old tests to proper place in work/old.
|
685
|
-
* Deprecated files moved to work/old.
|
686
|
-
* Coninuted work on tests.
|
687
|
-
|
688
|
-
* Adjusted module tests.
|
689
|
-
* Removed cli directory.
|
690
|
-
* Removed prime test directory and moved cli test up a level.
|
691
|
-
* Adjust test to match lib (again).
|
692
|
-
* Some deprecated extensions place in work/old for possible future reference.
|
693
|
-
|
694
|
-
* Make way for class extensions.
|
721
|
+
* Moved test/test_one_nine.rb to test/test_ruby.rb.
|
722
|
+
* Updated requires for "one_nine" to just "ruby" b/c of backports to 1.8.7.
|
695
723
|
* Added warning to Rick Kilmers's unit system.
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
* Move core method decisions (I sware there are only a few more!)
|
701
|
-
* Moved cli libs to toplevel. Added a few methods to prime library.
|
702
|
-
|
703
|
-
* Cleandup symbol and class extra extensions.
|
724
|
+
* Moving Rich Kilmers's units system to it's own package.
|
725
|
+
* Three are alternate unit systems available and Facets should work with any of them.
|
726
|
+
* Will keep a fair amount of the Time extensions though.
|
704
727
|
* Moved nil/status.rb to nilstatus.rb
|
705
728
|
* Got rid of Method#curry and Method#partial since they just convert to Procs.
|
706
|
-
* Divied prime methods to sepearate files after all.
|
707
|
-
|
708
|
-
* General cleanup pushing toward 3.0 release.
|
709
|
-
* Finished the reorganization of Enumerable extensions.
|
710
|
-
* Move integer tests cleanup.
|
711
|
-
* Removed old core/more test directories.
|
712
|
-
* Moved remaining tests to top test directory.
|
713
|
-
* MOved extra extension test to toplevel.
|
714
|
-
* Again moved more files to top level.
|
715
|
-
* MOved more test to toplevel.
|
716
|
-
* Moved remaining core test to top test level.
|
717
|
-
* Moved ext/core to prime/.
|
718
|
-
* Will not combine the per-method tests for the moment.
|
719
|
-
* Will save that for later (unless we decide to div prime again :p)
|
720
|
-
* Fixed requires for prime/ directory.
|
721
|
-
* Moved all "prime" libs to subdir (yes, like they were).
|
722
|
-
* Cleaned up remaining extranerous files.
|
723
|
-
|
724
|
-
* Further touchups to website.
|
725
|
-
* Added some extra pages to website.
|
726
|
-
* OVerhaul website for version 3.
|
727
|
-
|
728
729
|
* Made op_esc.rb a separate module rather thanan extension.
|
729
|
-
* REmoved more extraneous files and moved a few to work area.
|
730
|
-
|
731
|
-
* Added some tasks and a couple of file to work old.
|
732
|
-
* Cleaned up extra binding extensions.
|
733
|
-
* Continued considations (almost there).
|
734
|
-
* Continued consolidation and removing extraneous files.
|
735
730
|
* Deprecated with_reader, with_writer and with_accessor for attr_singleton_reader, &c.
|
736
|
-
* Removed extraneous Enumerable files.
|
737
|
-
|
738
|
-
* Removed extraneous module alias and attr files.
|
739
731
|
* Deprecated Hash#pairs_at. Use Hash#slice instead from core.
|
740
|
-
* Removed extraneous kernel extension files.
|
741
|
-
* Removed extraneous String extextion files.
|
742
|
-
* Removed some work folders.
|
743
|
-
* Partial adjustments for work area dure to organization changes.
|
744
|
-
* Scrap code.
|
745
|
-
* Removed vestiges of transfers to core extensions and consolidations.
|
746
|
-
* Fixed require in core libraries.
|
747
732
|
* Fixed the namespaces of some extensions.
|
748
|
-
* It is finished!
|
749
|
-
* Move all "prime" libs to top.
|
750
|
-
* Removed extra/.
|
751
|
-
* Moved extra/continuation to top.
|
752
|
-
* Move the rest of extra directories.
|
753
|
-
* Moved all "extra" extensions to top facets/ directory.
|
754
|
-
* Few more.
|
755
|
-
* Added some file that were added before in the transition.
|
756
|
-
|
757
|
-
* Removed remains vestigaes of old organization. (Now just ot fix the new one!)
|
758
|
-
* The big wadoozy.
|
759
|
-
* Remove empty directories for more/ext.
|
760
|
-
* Move add classes and module to facets/.
|
761
|
-
* Move more extensions to facets/extra.
|
762
|
-
* Move a few more/ext to prime.
|
763
|
-
* Moved core/facets to facets/extra.
|
764
|
-
* Removed empty ext directories.
|
765
733
|
* Added prime directory and files.
|
766
|
-
* Removed some dir methods that are now in prime.
|
767
|
-
* Remove some now empty directories from core/ext, due to the "prime" transfer.
|
768
734
|
* Removed all "prime" extension files.
|
769
735
|
* Move mattr to module.
|
770
|
-
|
771
736
|
* Fixed require bug in time methods.
|
772
737
|
* Reverted memomize.rb back to original code --will come back to later.
|
773
|
-
* Moved random.rb to sys/.
|
774
738
|
* Added stylizer.rb to replace stylize.rb
|
775
|
-
* Removed old stylize.rb library --see new stylizer.rb.
|
776
739
|
* Array #recursively is not only called #traverse.
|
777
740
|
* Added case/stylize methods to more/facets/string.
|
778
741
|
* Renamed more/string/facets/titlecase to captialize_all.
|
779
|
-
|
780
742
|
* Added uri and xoxo tests.
|
781
|
-
* Some more reorganization in test/core.
|
782
|
-
* Removed finaly vestage of old dir structure.
|
783
|
-
* Moved remaing test to more/add.
|
784
|
-
* Removed some outdated test and organized.
|
785
|
-
* Moved more/ext tests out of more/add/.
|
786
|
-
* Added ext, cli and sys to test/more/.
|
787
|
-
* Move text/core to test/ext.
|
788
|
-
* Updated .roll file for new organization.
|
789
|
-
* Updated .reap file.
|
790
|
-
* Updated metadata to fit new organization. (Happy Days!)
|
791
|
-
* Moved facets.rb up a level.
|
792
|
-
* Temporarily moved console libs to cli --mainly to ease working on them.
|
793
|
-
* Moved condole to add.
|
794
|
-
* Moved system to more/sys.
|
795
|
-
* Moved "lore" to add/. Yea!
|
796
|
-
* Moved libs to ext.
|
797
|
-
* Added more/ext directory.
|
798
743
|
* Progressive work on memoize and elementor.
|
799
|
-
* Moved systematic libs from ext/ to sys/.
|
800
|
-
* Moved classes and modules from ext/ to add/.
|
801
|
-
* Added facets directory to add/ directory.
|
802
|
-
* dded add/ directory to core/.
|
803
|
-
* Moved facets/ to ext/.
|
804
|
-
* Added ext directory.
|
805
|
-
* Minor doc change.
|
806
744
|
* Functor no longer privatizes =, == and =~.
|
807
|
-
* Minor doc fix.
|
808
745
|
* Properly split conversion.rb.
|
809
746
|
* Some string methods extracted from stylize.rb.
|
810
|
-
|
811
|
-
* Continued structuring.
|
812
|
-
* Moved lore/console up a notch.
|
813
|
-
* Moved lore/system up a notch.
|
814
747
|
* Moved random.rb to more/.
|
815
748
|
* Renamed namespace.eb to methodspace.rb.
|
816
749
|
* Moved autoreload to more/facets/kernel.
|
817
|
-
* Moved four remaing web libs to common directory (use web/ subdir?).
|
818
|
-
|
819
|
-
* Moved some modules from system to common.
|
820
|
-
* Moved all mixins back in with classes.
|
821
|
-
* Moved class/facets up a level.
|
822
750
|
* Removed old curry.rb.
|
823
|
-
* More as standard and extraneous core extensions is progressing.
|
824
|
-
* Added enumerable directory to more.
|
825
|
-
* Moved some libs from system to more.
|
826
|
-
* Added string directory to more.
|
827
|
-
* Added kernel directory to more extensions.
|
828
|
-
* Recreated more to house standard extensions.
|
829
|
-
* More as standard extensions, and Lore (?) for the rest.
|
830
|
-
* Added some web related libraries.
|
831
|
-
|
832
751
|
* Added cgi.rb with some standard extensions.
|
833
|
-
* Fixed bug with #peek in stackable.
|
834
752
|
* Deprecated paramix.rb.
|
835
|
-
|
836
753
|
* Added xmlhash.rb and returned uri.rb extensions to the library.
|
837
|
-
* Moved getoptlong/rb to standard extensions folder.
|
838
754
|
* Added #method_name to Date class.
|
839
|
-
|
840
|
-
* Removed extraneous level in doc.
|
841
|
-
* REmove cut-bases AOP, now in it's own library.
|
755
|
+
* Remove cut-bases AOP, now in it's own library.
|
842
756
|
* Converted compare_on.rb to Paramtric Mixins.
|
843
|
-
|
844
757
|
* Split fileutils up into individual methods.
|
845
|
-
*
|
846
|
-
* Moved standard library extensions to more/extend.
|
847
|
-
* Added facets directory to more/extend.
|
848
|
-
* Continued organization.
|
849
|
-
* Moved console related libs to more/console.
|
850
|
-
* Added facets subdir to console.
|
851
|
-
* Added more/console; trying something a bit different in organization.
|
852
|
-
* Added more/class/facets/net and moved set and ostruct to class as well.
|
853
|
-
* more/system, rather than systems.
|
854
|
-
* Moved class, mixin, and system to more.
|
855
|
-
* Added new more directory.
|
856
|
-
* Moved more to systems.
|
857
|
-
|
858
|
-
* Renamed console.rb to whate it should be consoleutils.rb.
|
758
|
+
* Renamed console.rb to what it should be consoleutils.rb.
|
859
759
|
* Update to command.rb integrating MasterCommand and Command into a single class.
|
860
|
-
|
861
|
-
|
862
|
-
|
760
|
+
* Added options back into multiglob_r.
|
761
|
+
* Improved cloneable.rb to be a true deep dup/clone mixin using Ken Bloom's suggestion.
|
762
|
+
* Added tasksystem.rb.
|
763
|
+
* Added enumerable/combinations.
|
764
|
+
* Added openhash and tracepoint.
|
863
765
|
|
864
|
-
|
865
|
-
|
866
|
-
*
|
867
|
-
* Added log/Changelog.txt too.
|
868
|
-
* Update logs. (Should these even be under version control?)
|
869
|
-
* Added Rakefile to redirect to task/*.
|
766
|
+
* Bug Fixes
|
767
|
+
|
768
|
+
* Fixed bug with #peek in stackable.
|
870
769
|
* Fixed bug in Kernel#object_hexid.
|
871
|
-
* Fixed test for hash/collate.
|
872
|
-
* Added test task and temporary rdoc task.
|
873
|
-
* Added options back into multiglob_r.
|
874
770
|
* Fixed bug in multiglob_r so it will NOT follow symlinks.
|
875
|
-
*
|
876
|
-
* Moved work/current to new (can you tell I have a new naming scheme for work/?)
|
877
|
-
* Moved work/outdated to old.
|
878
|
-
* Added some outdated tasks to work. Will eventually delete.
|
879
|
-
|
880
|
-
* Moved doc/ to site/.
|
881
|
-
* Added remaining doc files.
|
882
|
-
* Converted website to XML.
|
771
|
+
* Fixed test_keyize.rb.
|
883
772
|
|
884
|
-
|
885
|
-
* Convert website from html to xml.
|
886
|
-
* Finishing touches for next release.
|
887
|
-
* Saved old rdoc script.
|
773
|
+
* Adminstrative Changes
|
888
774
|
|
889
|
-
*
|
775
|
+
* This was a fairly large and fast-paced update, so unfortunately not all changes are listed this time.
|
776
|
+
* Added ri generation to setup.rb.
|
777
|
+
* Updated README and allowed doc/ to be included in package.
|
890
778
|
* Finally completed removal of all embedded tests.
|
891
|
-
* Organized tests according to new lib organization.
|
892
|
-
* Improved cloneable.rb to be a true deep dup/clone mixin using Ken Bloom's suggestion.
|
893
|
-
|
894
|
-
* Working on end-user tasks.
|
895
|
-
* Added work/outdated/task.
|
896
|
-
* Updated the way rdocs are generated.
|
897
779
|
* Organized all libs between core, more, class and mixin.
|
898
|
-
* Moved class libraries to lib/class/facets.
|
899
|
-
* Added lib/class.
|
900
|
-
* Added tasksystem.rb.
|
901
|
-
* Remove some admin task files no longer needed thanks to Reap.
|
902
|
-
* Move admin/ to work/outdated. We'll be using reap instead.
|
903
|
-
* Moved meta/facets.roll to .roll.
|
904
|
-
* This is related to an update of Rolls...
|
905
|
-
* It's better to have good SOC here regardless of some metadata redundancy.
|
906
|
-
* Added meta/authors.
|
907
|
-
* Moved old changelogs to log/ and move meta/config.yaml to .reap per new reap design.
|
908
|
-
* Updaed reap config and removed icli.yaml.
|
909
|
-
* Added doc/ads directory.
|
910
|
-
* Removed dev/ directory.
|
911
|
-
* Moved remaining dev files to work/ (will cleanup later).
|
912
|
-
* Moved dev/sandbox to work/.
|
913
|
-
* Moved dev/task and reference material to work directory.
|
914
|
-
* Added enumerable/combinations.
|
915
|
-
* Added openhash and tracepoint.
|
916
780
|
|
917
781
|
|
918
782
|
== 2.3.0 / 2008-02-01
|
919
783
|
|
920
|
-
Amoung other changes with this release, cloneable.rb is
|
921
|
-
|
922
|
-
to the library.
|
784
|
+
Amoung other changes with this release, cloneable.rb is now a true deep
|
785
|
+
dup/clone mixin; tracepoint.rb returns to the library.
|
923
786
|
|
924
787
|
Changes:
|
925
788
|
|
926
|
-
|
789
|
+
* 4 Major Enhancements
|
790
|
+
|
791
|
+
* Cloneable provides true deep cloning.
|
792
|
+
* Moved hash_keyize.rb to CORE as hash/keyize.rb.
|
927
793
|
* Added tracepoint.rb back to the library.
|
794
|
+
* Added hash/collate.
|
795
|
+
|
796
|
+
* 3 Bug Fixes
|
797
|
+
|
928
798
|
* Fixed multiglob_r bug, so it will NOT follow symlinks.
|
799
|
+
* Added a couple of missing binding requires.
|
800
|
+
* Fixed test_keyize.rb.
|
929
801
|
|
930
|
-
|
931
|
-
|
802
|
+
* 6 Admistrative Changes
|
803
|
+
|
804
|
+
* Reorganized library into smaller groups: core, more, class and mixin.
|
932
805
|
* Remove admin/svn subdir.
|
933
|
-
*
|
806
|
+
* Remove admin/log.
|
934
807
|
* Add admin tasks.
|
935
808
|
* Moved admin tasks to admin directory.
|
936
809
|
* Added admin directory.
|
937
|
-
* Removed task/doc subdir.
|
938
|
-
* Moved some tasks.
|
939
|
-
* Convert tasks to pure ruby.
|
940
|
-
|
941
|
-
* Move test/unit to test/core.
|
942
|
-
* Moved remaining more test to test/more.
|
943
|
-
* Added test/more/hash directory.
|
944
|
-
* Moved more tests to test/more directory.
|
945
|
-
* Added test/more.
|
946
|
-
* Fixed test_keyize.rb.
|
947
|
-
* binding/test_cflow renamed to test_caller
|
948
|
-
|
949
|
-
* Added test for new hash/collate.
|
950
|
-
* Added demo benchmarks.
|
951
|
-
* Update publish task.
|
952
|
-
* Update quick.html and wiki code.
|
953
|
-
* Added TODO to toplevel.
|
954
|
-
* Added a couple of missing binding requires to repo.
|
955
|
-
* Moved More lib hash_keyize.rb to hash/keyize.rb.
|
956
|
-
|
957
|
-
* Move source_material to just source.
|
958
810
|
|
959
|
-
* ANd so it goes with work reorganization.
|
960
|
-
* Moved dev/play to dev/sandbox.
|
961
|
-
* Further reorganiztion of work area.
|
962
|
-
* Some reorganization of developemnt area.
|
963
811
|
|
964
812
|
|
965
813
|
== 2.2.1 / 2007-12-22
|
@@ -1201,7 +1049,7 @@ Changes:
|
|
1201
1049
|
* Renamed old changelogs.
|
1202
1050
|
|
1203
1051
|
|
1204
|
-
== 2.0.5 / 2007-11-
|
1052
|
+
== 2.0.5 / 2007-11-07
|
1205
1053
|
|
1206
1054
|
Changes:
|
1207
1055
|
|
@@ -1301,50 +1149,41 @@ Changes:
|
|
1301
1149
|
* update methods to eleminate duplicate file names between lib/core and lib/methods
|
1302
1150
|
|
1303
1151
|
|
1304
|
-
== 2.0.
|
1152
|
+
== 2.0.1 / 2007-10-06
|
1305
1153
|
|
1306
1154
|
Changes:
|
1307
1155
|
|
1308
|
-
|
1309
|
-
|
1310
|
-
|
1311
|
-
|
1156
|
+
* updated version to 2.0.1
|
1157
|
+
* minor bugs fixes
|
1158
|
+
* update methods task to display each file as it process it
|
1159
|
+
* added benchmarks for some enumerable methods.
|
1160
|
+
* moved demo/bench/bench_factorial to an demo/bench/integer subclass
|
1161
|
+
* added Erik Veenstra to AUTHORS for work on enumerable/group_by and cluster_by
|
1162
|
+
* minor improvement to test task to specifically read test_*.rb files
|
1163
|
+
* removed enumerable/partition.rb
|
1164
|
+
* move enumerable/partition.rb methods to collect.rb.
|
1165
|
+
* Improved Integer#of.
|
1166
|
+
* Minor improvements to collect.rb and partition.rb
|
1167
|
+
* Deprecated nonuniq!, bug fixed cluster_by and aliased group_by and partition_by.
|
1168
|
+
* Rennamed Enumerable#partition_by to group_by (like RUby 1.9) and fixed bug in cluster_by.
|
1312
1169
|
|
1313
|
-
2007-10-06 transami
|
1314
|
-
|
1315
|
-
* fixed enumerable/test_collect.rb
|
1316
|
-
* doc update some tasks
|
1317
|
-
* updated version to 2.0.1
|
1318
|
-
* minor bugs fixes
|
1319
|
-
* update methods task to display each file as it process it
|
1320
|
-
* added benchmarks for some enumerable methods.
|
1321
|
-
* moved demo/bench/bench_factorial to an demo/bench/integer subclass
|
1322
|
-
* added Erik Veenstra to AUHTORS for work on enumerable/group_by and cluster_by
|
1323
|
-
* minor improvement to test task to specifically read test_*.rb files
|
1324
|
-
* removed enumerable/partition.rb
|
1325
|
-
* move enumerable/partition.rb methods to collect.rb.
|
1326
|
-
* Improved Integer#of.
|
1327
|
-
* Minor improvements to collect.rb and partition.rb
|
1328
|
-
* Deprecated nonuniq!, bug fixed cluster_by and aliased group_by and partition_by.
|
1329
|
-
* Rennamed Enumerable#partition_by to group_by (like RUby 1.9) and fixed bug in cluster_by.
|
1330
|
-
* update quick docs
|
1331
|
-
* Doc updates
|
1332
1170
|
|
1171
|
+
== 2.0.0 / 2007-10-02
|
1333
1172
|
|
1334
|
-
|
1173
|
+
Changes:
|
1335
1174
|
|
1336
|
-
|
1337
|
-
|
1338
|
-
|
1339
|
-
|
1340
|
-
|
1341
|
-
|
1342
|
-
|
1343
|
-
|
1344
|
-
|
1345
|
-
|
1346
|
-
|
1347
|
-
|
1175
|
+
* Added Oliver Renaud to the AUTHORS list (oops!)
|
1176
|
+
* update README to not use folded lines
|
1177
|
+
* spellchecked README
|
1178
|
+
* update test task and test_aop.rb
|
1179
|
+
* minor update to meta/project.yaml
|
1180
|
+
* updates to groups task and methods task and version to 'stable'
|
1181
|
+
* updated test task to allow 'live' test
|
1182
|
+
* update AUTHORS
|
1183
|
+
* update test task and move AUTHORS file to toplevel
|
1184
|
+
* moved note/ to doc/notes
|
1185
|
+
* update tasks for core/fore move and moved todo to dev/
|
1186
|
+
* moved fore to core (and core to methods)
|
1348
1187
|
|
1349
1188
|
|
1350
1189
|
2007-09-20 transami
|
@@ -1963,7 +1802,7 @@ Changes:
|
|
1963
1802
|
* minor touchup to opencascade
|
1964
1803
|
|
1965
1804
|
|
1966
|
-
== 1.6.0
|
1805
|
+
== 1.6.0 / 2006-07-20
|
1967
1806
|
|
1968
1807
|
Changes:
|
1969
1808
|
|
@@ -2153,6 +1992,9 @@ Changes:
|
|
2153
1992
|
|
2154
1993
|
== 1.0.0 / 2005-12-04
|
2155
1994
|
|
1995
|
+
Okay. Now we've finally hit our 1.0.0 relase. Yea! Does it desrve 1.0 at this point?
|
1996
|
+
Ah, well close enough. Mainly there won't be anymore silly development names ;)
|
1997
|
+
|
2156
1998
|
Changes:
|
2157
1999
|
|
2158
2000
|
* Sped up string#similarity.
|
@@ -2483,6 +2325,13 @@ Changes:
|
|
2483
2325
|
* Added services.rb, a lib for managing methods as first class objects
|
2484
2326
|
* Fixed/cleaned-up orm_supprt.rb
|
2485
2327
|
|
2328
|
+
== 0.3.1
|
2329
|
+
|
2330
|
+
Changes:
|
2331
|
+
|
2332
|
+
* Aliased #autoload_classes with #autorequire.
|
2333
|
+
* Added #strfbits and #strfbytes to binary_multiplers.rb.
|
2334
|
+
|
2486
2335
|
|
2487
2336
|
== 0.3.0
|
2488
2337
|
|
@@ -2503,14 +2352,6 @@ Changes:
|
|
2503
2352
|
module, and thus placed here.
|
2504
2353
|
|
2505
2354
|
|
2506
|
-
== 0.3.1
|
2507
|
-
|
2508
|
-
Changes:
|
2509
|
-
|
2510
|
-
* Aliased #autoload_classes with #autorequire.
|
2511
|
-
* Added #strfbits and #strfbytes to binary_multiplers.rb.
|
2512
|
-
|
2513
|
-
|
2514
2355
|
== 0.2.0
|
2515
2356
|
|
2516
2357
|
Succ
|