facets 2.6.0 → 2.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/HISTORY.rdoc +331 -35
- data/MANIFEST +685 -826
- data/{doc/guide/notes.rd → NOTES} +0 -0
- data/README.rdoc +73 -25
- data/Rakefile +245 -2
- data/TODO +5 -0
- data/demo/hook.rd +47 -0
- data/demo/scenario_require.rd +9 -0
- data/doc/README.more +24 -6
- data/doc/manual/about.rb +47 -0
- data/doc/manual/annotations.rdoc +60 -0
- data/doc/manual/associations.rdoc +55 -0
- data/doc/manual/blockups.rdoc +101 -0
- data/doc/manual/capsule.rdoc +34 -0
- data/doc/manual/command.rdoc +177 -0
- data/doc/manual/core.rdoc +37 -0
- data/doc/manual/faq.rdoc +32 -0
- data/doc/manual/typecast.html +112 -0
- data/lib/core/facets.rb +359 -11
- data/lib/core/facets/array/combination.rb +3 -3
- data/lib/core/facets/array/index.rb +4 -1
- data/lib/core/facets/array/permutation.rb +2 -2
- data/lib/core/facets/array/product.rb +1 -1
- data/lib/core/facets/binding/eval.rb +1 -1
- data/lib/core/facets/denumerable.rb +76 -0
- data/lib/core/facets/duplicable.rb +34 -0
- data/lib/core/facets/enumerable/count.rb +10 -4
- data/lib/core/facets/enumerable/defer.rb +77 -0
- data/lib/core/facets/enumerable/each_by.rb +1 -1
- data/lib/core/facets/enumerable/every.rb +35 -0
- data/lib/{more/facets/elementwise.rb → core/facets/enumerable/ewise.rb} +0 -0
- data/lib/core/facets/enumerable/filter.rb +25 -0
- data/lib/core/facets/enumerable/group_by.rb +1 -1
- data/lib/core/facets/enumerable/none.rb +3 -2
- data/lib/core/facets/enumerable/one.rb +3 -2
- data/lib/core/facets/enumerable/per.rb +61 -0
- data/lib/core/facets/exception/raised.rb +14 -0
- data/lib/core/facets/integer/odd.rb +5 -1
- data/lib/core/facets/kernel/__dir__.rb +13 -3
- data/lib/core/facets/kernel/__here__.rb +14 -0
- data/lib/core/facets/kernel/__method__.rb +9 -3
- data/lib/core/facets/kernel/ask.rb +1 -0
- data/lib/core/facets/kernel/equate.rb +13 -0
- data/lib/core/facets/kernel/extension.rb +9 -0
- data/lib/core/facets/kernel/identical.rb +4 -0
- data/lib/core/facets/kernel/instance_exec.rb +2 -1
- data/lib/core/facets/kernel/method.rb +49 -0
- data/lib/core/facets/kernel/object_send.rb +2 -2
- data/lib/core/facets/kernel/{state.rb → object_state.rb} +23 -12
- data/lib/core/facets/kernel/require_all.rb +6 -1
- data/lib/core/facets/kernel/require_local.rb +8 -1
- data/lib/core/facets/kernel/require_relative.rb +52 -0
- data/lib/core/facets/kernel/source_location.rb +13 -0
- data/lib/core/facets/kernel/tap.rb +13 -6
- data/lib/core/facets/module/attr_setter.rb +57 -0
- data/lib/core/facets/module/instance_method.rb +24 -0
- data/lib/core/facets/module/module_load.rb +60 -44
- data/lib/core/facets/module/module_require.rb +1 -0
- data/lib/core/facets/nilclass/to_f.rb +1 -1
- data/lib/core/facets/objectspace/op_fetch.rb +3 -0
- data/lib/core/facets/proc/curry.rb +4 -3
- data/lib/core/facets/string/bytes.rb +10 -4
- data/lib/core/facets/string/camelcase.rb +6 -5
- data/lib/core/facets/string/chars.rb +5 -1
- data/lib/core/facets/string/each_char.rb +1 -1
- data/lib/core/facets/string/each_word.rb +1 -1
- data/lib/core/facets/string/lines.rb +11 -4
- data/lib/core/facets/string/start_with.rb +9 -2
- data/lib/core/facets/string/unfold.rb +27 -0
- data/lib/core/facets/symbol/succ.rb +3 -3
- data/lib/core/facets/symbol/thrown.rb +20 -0
- data/lib/core/facets/symbol/to_proc.rb +3 -2
- data/lib/core/facets/time/to_time.rb +1 -1
- data/lib/core/facets/to_hash.rb +41 -100
- data/lib/core/facets/unboundmethod/name.rb +20 -23
- data/lib/more/facets/ansicode.rb +1 -10
- data/lib/more/facets/autoarray.rb +3 -31
- data/lib/more/facets/basicobject.rb +73 -0
- data/lib/more/facets/blankslate.rb +2 -66
- data/lib/{lore → more}/facets/cgi.rb +0 -0
- data/lib/more/facets/class_extend.rb +1 -0
- data/lib/{lore → more}/facets/continuation.rb +0 -0
- data/lib/{lore → more}/facets/date.rb +3 -3
- data/lib/more/facets/enumargs.rb +192 -0
- data/lib/more/facets/enumerablepass.rb +2 -216
- data/lib/more/facets/enumerator.rb +62 -0
- data/lib/more/facets/{equatable.rb → equitable.rb} +11 -11
- data/lib/more/facets/expirable.rb +13 -41
- data/lib/{lore → more}/facets/fileutils.rb +0 -0
- data/lib/{lore → more}/facets/fileutils/head.rb +0 -0
- data/lib/{lore → more}/facets/fileutils/safe_ln.rb +0 -0
- data/lib/{lore → more}/facets/fileutils/slice.rb +0 -0
- data/lib/{lore → more}/facets/fileutils/tail.rb +0 -0
- data/lib/{lore → more}/facets/fileutils/wc.rb +0 -0
- data/lib/{lore → more}/facets/fileutils/whereis.rb +0 -0
- data/lib/{lore → more}/facets/fileutils/which.rb +0 -0
- data/lib/{lore → more}/facets/getoptlong.rb +0 -0
- data/lib/more/facets/hook.rb +2 -29
- data/lib/more/facets/inheritor.rb +2 -2
- data/lib/more/facets/instance_eval.rb +50 -0
- data/lib/more/facets/instance_function.rb +78 -0
- data/lib/more/facets/main.rb +20 -15
- data/lib/more/facets/memoize.rb +1 -113
- data/lib/more/facets/module/attr.rb +83 -0
- data/lib/more/facets/module/attr_tester.rb +44 -0
- data/lib/more/facets/module/attr_toggler.rb +59 -0
- data/lib/more/facets/module/attr_validator.rb +34 -0
- data/lib/more/facets/{class_extension.rb → module/class_extend.rb} +21 -13
- data/lib/more/facets/once.rb +59 -0
- data/lib/more/facets/openmodule.rb +1 -0
- data/lib/more/facets/orderedhash.rb +1 -33
- data/lib/{lore → more}/facets/ostruct.rb +0 -0
- data/lib/more/facets/ostructable.rb +1 -4
- data/lib/more/facets/partial.rb +18 -16
- data/lib/{lore → more}/facets/pathname.rb +0 -0
- data/lib/more/facets/preinitialize.rb +157 -0
- data/lib/{lore → more}/facets/rbconfig.rb +0 -0
- data/lib/more/facets/recorder.rb +1 -2
- data/lib/{lore → more}/facets/set.rb +0 -0
- data/lib/{lore → more}/facets/shellwords.rb +0 -0
- data/lib/{lore → more}/facets/uri.rb +0 -0
- data/lib/{lore → more}/facets/yaml.rb +0 -0
- data/lib/{lore → more}/facets/zlib.rb +0 -0
- data/meta/loadpath +0 -1
- data/meta/sitemap +4 -0
- data/meta/version +1 -1
- data/test/core/enumerable/test_count.rb +1 -1
- data/test/{more/test_filter.rb → core/enumerable/test_defer.rb} +24 -22
- data/test/{more/test_elementor.rb → core/enumerable/test_every.rb} +2 -15
- data/test/core/enumerable/test_ewise.rb +23 -0
- data/test/core/enumerable/test_per.rb +18 -0
- data/test/core/enumerable/test_take.rb +13 -0
- data/test/core/kernel/test_deepcopy.rb +1 -1
- data/test/{more/test_1stclassmethod.rb → core/kernel/test_method.rb} +2 -7
- data/test/core/kernel/test_tap.rb +1 -1
- data/test/core/proc/test_curry.rb +11 -0
- data/test/core/string/test_bytes.rb +1 -1
- data/test/core/string/test_camelcase.rb +23 -6
- data/test/core/string/test_lines.rb +1 -1
- data/test/core/string/test_unfold.rb +14 -0
- data/test/{more → core}/test_blank.rb +0 -0
- data/test/{more → core}/test_boolean.rb +0 -0
- data/test/{more → core}/test_functor.rb +0 -0
- data/test/{lore → more}/test_basicobject.rb +0 -0
- data/test/more/{test_class_extension.rb → test_class_extend.rb} +6 -6
- data/test/{lore → more}/test_continuation.rb +0 -0
- data/test/{lore → more}/test_date.rb +0 -0
- data/test/more/{test_enumerablepass.rb → test_enumargs.rb} +2 -4
- data/test/more/{test_equatable.rb → test_equitable.rb} +2 -2
- data/test/more/{test_instantise.rb → test_instance_function.rb} +3 -2
- data/test/more/test_memoize.rb +1 -1
- data/test/{lore → more}/test_ostruct.rb +0 -0
- metadata +865 -1016
- data/RELEASE +0 -38
- data/doc/README.lore +0 -51
- data/doc/log/basic_stats/index.html +0 -39
- data/doc/log/changelog.html +0 -648
- data/doc/log/changelog.txt +0 -217
- data/doc/log/stats/index.html +0 -39
- data/doc/log/testlog.txt +0 -278
- data/doc/notes/CHANGES +0 -2529
- data/doc/rdoc/lore/classes/Array.html +0 -176
- data/doc/rdoc/lore/classes/CGI.html +0 -191
- data/doc/rdoc/lore/classes/Config.html +0 -135
- data/doc/rdoc/lore/classes/Continuation.html +0 -113
- data/doc/rdoc/lore/classes/Date.html +0 -631
- data/doc/rdoc/lore/classes/DateTime.html +0 -583
- data/doc/rdoc/lore/classes/Enumerable.html +0 -89
- data/doc/rdoc/lore/classes/Enumerable/Enumerator.html +0 -147
- data/doc/rdoc/lore/classes/File.html +0 -128
- data/doc/rdoc/lore/classes/FileUtils.html +0 -434
- data/doc/rdoc/lore/classes/GetoptLong.html +0 -118
- data/doc/rdoc/lore/classes/GetoptLong/DSL.html +0 -208
- data/doc/rdoc/lore/classes/Kernel.html +0 -135
- data/doc/rdoc/lore/classes/Logger.html +0 -229
- data/doc/rdoc/lore/classes/Logger/Ansicolor.html +0 -277
- data/doc/rdoc/lore/classes/Logger/LogDevice.html +0 -121
- data/doc/rdoc/lore/classes/NilClass.html +0 -119
- data/doc/rdoc/lore/classes/OpenStruct.html +0 -432
- data/doc/rdoc/lore/classes/Pathname.html +0 -353
- data/doc/rdoc/lore/classes/Set.html +0 -117
- data/doc/rdoc/lore/classes/Shellwords.html +0 -111
- data/doc/rdoc/lore/classes/String.html +0 -140
- data/doc/rdoc/lore/classes/Time.html +0 -154
- data/doc/rdoc/lore/classes/URI.html +0 -454
- data/doc/rdoc/lore/classes/URI/Hash.html +0 -105
- data/doc/rdoc/lore/classes/URI/Kernel.html +0 -122
- data/doc/rdoc/lore/classes/Zlib.html +0 -188
- data/doc/rdoc/lore/created.rid +0 -1
- data/doc/rdoc/lore/files/README.html +0 -286
- data/doc/rdoc/lore/files/doc/README_lore.html +0 -155
- data/doc/rdoc/lore/files/lib/lore/facets/basicobject_rb.html +0 -118
- data/doc/rdoc/lore/files/lib/lore/facets/cgi_rb.html +0 -111
- data/doc/rdoc/lore/files/lib/lore/facets/continuation_rb.html +0 -147
- data/doc/rdoc/lore/files/lib/lore/facets/date_rb.html +0 -97
- data/doc/rdoc/lore/files/lib/lore/facets/enumerator_rb.html +0 -111
- data/doc/rdoc/lore/files/lib/lore/facets/fileutils/head_rb.html +0 -96
- data/doc/rdoc/lore/files/lib/lore/facets/fileutils/safe_ln_rb.html +0 -96
- data/doc/rdoc/lore/files/lib/lore/facets/fileutils/slice_rb.html +0 -96
- data/doc/rdoc/lore/files/lib/lore/facets/fileutils/tail_rb.html +0 -96
- data/doc/rdoc/lore/files/lib/lore/facets/fileutils/wc_rb.html +0 -96
- data/doc/rdoc/lore/files/lib/lore/facets/fileutils/whereis_rb.html +0 -96
- data/doc/rdoc/lore/files/lib/lore/facets/fileutils/which_rb.html +0 -96
- data/doc/rdoc/lore/files/lib/lore/facets/fileutils_rb.html +0 -131
- data/doc/rdoc/lore/files/lib/lore/facets/getoptlong_rb.html +0 -135
- data/doc/rdoc/lore/files/lib/lore/facets/logger_rb.html +0 -142
- data/doc/rdoc/lore/files/lib/lore/facets/ostruct_rb.html +0 -135
- data/doc/rdoc/lore/files/lib/lore/facets/pathname_rb.html +0 -145
- data/doc/rdoc/lore/files/lib/lore/facets/rbconfig_rb.html +0 -124
- data/doc/rdoc/lore/files/lib/lore/facets/set_rb.html +0 -96
- data/doc/rdoc/lore/files/lib/lore/facets/shellwords_rb.html +0 -124
- data/doc/rdoc/lore/files/lib/lore/facets/uri_rb.html +0 -125
- data/doc/rdoc/lore/files/lib/lore/facets/yaml_rb.html +0 -146
- data/doc/rdoc/lore/files/lib/lore/facets/zlib_rb.html +0 -97
- data/doc/rdoc/lore/fr_class_index.html +0 -73
- data/doc/rdoc/lore/fr_file_index.html +0 -71
- data/doc/rdoc/lore/fr_method_index.html +0 -177
- data/doc/rdoc/lore/index.html +0 -26
- data/doc/rdoc/lore/rdoc-style.css +0 -177
- data/doc/release-notes/RELEASE-2.0.5 +0 -8
- data/doc/release-notes/RELEASE-2.1.0 +0 -9
- data/doc/release-notes/RELEASE-2.1.1 +0 -5
- data/doc/release-notes/RELEASE-2.1.2 +0 -6
- data/doc/release-notes/RELEASE-2.1.3 +0 -5
- data/doc/release-notes/RELEASE-2.2.0 +0 -14
- data/doc/release-notes/RELEASE-2.2.1 +0 -4
- data/doc/release-notes/RELEASE-2.3.0 +0 -6
- data/doc/release-notes/RELEASE-2.4.0 +0 -70
- data/doc/release-notes/RELEASE-2.4.1 +0 -8
- data/doc/release-notes/RELEASE-2.4.2 +0 -4
- data/doc/release-notes/RELEASE-2.4.3 +0 -78
- data/doc/release-notes/RELEASE-2.4.4 +0 -38
- data/doc/release-notes/RELEASE-2.4.5 +0 -37
- data/doc/release-notes/RELEASE-2.5.0 +0 -83
- data/lib/core/facets/kernel/instance.rb +0 -19
- data/lib/lore/facets/basicobject.rb +0 -14
- data/lib/lore/facets/enumerator.rb +0 -67
- data/lib/lore/facets/logger.rb +0 -291
- data/lib/more/facets/1stclassmethod.rb +0 -140
- data/lib/more/facets/advisable.rb +0 -162
- data/lib/more/facets/association.rb +0 -210
- data/lib/more/facets/attr.rb +0 -209
- data/lib/more/facets/basex.rb +0 -37
- data/lib/more/facets/bbcode.rb +0 -397
- data/lib/more/facets/bicrypt.rb +0 -265
- data/lib/more/facets/binreadable.rb +0 -221
- data/lib/more/facets/censor.rb +0 -97
- data/lib/more/facets/classmethods.rb +0 -199
- data/lib/more/facets/consoleutils.rb +0 -99
- data/lib/more/facets/crypt.rb +0 -166
- data/lib/more/facets/dependency.rb +0 -151
- data/lib/more/facets/downloader.rb +0 -281
- data/lib/more/facets/duplicable.rb +0 -43
- data/lib/more/facets/elementor.rb +0 -133
- data/lib/more/facets/filter.rb +0 -121
- data/lib/more/facets/heap.rb +0 -22
- data/lib/more/facets/infinity.rb +0 -193
- data/lib/more/facets/ini.rb +0 -264
- data/lib/more/facets/instantise.rb +0 -1
- data/lib/more/facets/instantize.rb +0 -95
- data/lib/more/facets/interval.rb +0 -282
- data/lib/more/facets/iteration.rb +0 -65
- data/lib/more/facets/linkedlist.rb +0 -222
- data/lib/more/facets/lrucache.rb +0 -157
- data/lib/more/facets/matcher.rb +0 -140
- data/lib/more/facets/memoizer.rb +0 -74
- data/lib/more/facets/minitar.rb +0 -1063
- data/lib/more/facets/nackclass.rb +0 -41
- data/lib/more/facets/net/smtp_tls.rb +0 -131
- data/lib/more/facets/nilstatus.rb +0 -48
- data/lib/more/facets/overload.rb +0 -94
- data/lib/more/facets/paramix.rb +0 -202
- data/lib/more/facets/pool.rb +0 -91
- data/lib/more/facets/pqueue.rb +0 -449
- data/lib/more/facets/pry.rb +0 -32
- data/lib/more/facets/reflection.rb +0 -145
- data/lib/more/facets/semaphore.rb +0 -92
- data/lib/more/facets/settings.rb +0 -248
- data/lib/more/facets/snapshot.rb +0 -209
- data/lib/more/facets/sparse_array.rb +0 -809
- data/lib/more/facets/string/mask.rb +0 -278
- data/lib/more/facets/string/obfuscate.rb +0 -65
- data/lib/more/facets/string/stylize.rb +0 -169
- data/lib/more/facets/string/words.rb +0 -167
- data/lib/more/facets/syncarray.rb +0 -114
- data/lib/more/facets/synchash.rb +0 -157
- data/lib/more/facets/typecast.rb +0 -261
- data/lib/more/facets/uninheritable.rb +0 -50
- data/lib/more/facets/xmlhash.rb +0 -112
- data/lib/more/facets/xoxo.rb +0 -259
- data/lib/more/facets/ziputils.rb +0 -490
- data/task/conflicts +0 -63
- data/task/coverage.rake +0 -37
- data/task/methods +0 -49
- data/task/rdoc.rake +0 -17
- data/task/setup.rake +0 -38
- data/task/test.rake +0 -145
- data/test/more/test_advisable.rb +0 -71
- data/test/more/test_association.rb +0 -38
- data/test/more/test_bbcode.rb +0 -21
- data/test/more/test_binreadable.rb +0 -50
- data/test/more/test_buildable.rb +0 -73
- data/test/more/test_classmethods.rb +0 -56
- data/test/more/test_crypt.rb +0 -32
- data/test/more/test_dependency.rb +0 -69
- data/test/more/test_elementwise.rb +0 -25
- data/test/more/test_infinity.rb +0 -40
- data/test/more/test_interval.rb +0 -151
- data/test/more/test_linkedlist.rb +0 -41
- data/test/more/test_lrucache.rb +0 -14
- data/test/more/test_overload.rb +0 -160
- data/test/more/test_paramix.rb +0 -170
- data/test/more/test_prototype.rb +0 -35
- data/test/more/test_snapshot.rb +0 -21
- data/test/more/test_sparsearray.rb +0 -279
- data/test/more/test_syncarray.rb +0 -15
- data/test/more/test_synchash.rb +0 -16
- data/test/more/test_typecast.rb +0 -54
- data/test/more/test_uninheritable.rb +0 -31
- data/test/more/test_xoxo.rb +0 -274
- data/test/test_facets.rb +0 -9
data/HISTORY.rdoc
CHANGED
@@ -1,5 +1,129 @@
|
|
1
1
|
= Facets History
|
2
2
|
|
3
|
+
== 2.7.0 / 2009-08-01
|
4
|
+
|
5
|
+
Facets 2.7 is the biggest release of Facets since 2.4. Rather then trickle-release these
|
6
|
+
changes over the course of the 2.6.x series, I made the decision to let 2.7 have them
|
7
|
+
all at once. In so doing this release nearly completes the process of trimming down
|
8
|
+
the MORE library to its essentials. Over 40 high-level libraries have been spun-off
|
9
|
+
as separate gems and/or deprecated. No doubt this is a big change for Facets, and the
|
10
|
+
transition may be a bit bumpy over the short-term, but I am certain that in the long-run
|
11
|
+
everyone involved will be better served. To help, I have listed the effected libraries
|
12
|
+
and the alternate gems availble to take their place.
|
13
|
+
|
14
|
+
A few other changes have also been made in the release that may also effect your code.
|
15
|
+
In particular you should note that #class_extension has been renamed to #class_extend
|
16
|
+
(require 'facets/class_extend'). In addition we have added a few new core methods such
|
17
|
+
as Exception#raised? and Symbol#thrown?.
|
18
|
+
|
19
|
+
Changes:
|
20
|
+
|
21
|
+
* Spun-Off Projects
|
22
|
+
|
23
|
+
These libraries have been deprectated from Facets entirely, but are available
|
24
|
+
as separate gems (or soon will be).
|
25
|
+
|
26
|
+
LIBRARY GEM
|
27
|
+
-------------------- ------------------------------
|
28
|
+
overload.rb overload
|
29
|
+
binreadable.rb binaryio
|
30
|
+
downloader.rb downloader
|
31
|
+
xoxo.rb xoxo
|
32
|
+
bicrypt.rb bicrypt
|
33
|
+
typecast.rb typecast
|
34
|
+
association.rb association
|
35
|
+
syncarray.rb sync
|
36
|
+
synchash.rb sync
|
37
|
+
paramix.rb paramix
|
38
|
+
crypt.rb crypt3
|
39
|
+
lrucache.rb lrucache
|
40
|
+
net/smtp_tls.rb smtp_tls
|
41
|
+
advisable.rb advisable
|
42
|
+
buildable.rb buildable
|
43
|
+
memoizer.rb memoizer
|
44
|
+
harray.rb sparray
|
45
|
+
sparse_array.rb sparray
|
46
|
+
iteration.rb iteration
|
47
|
+
interval.rb stick
|
48
|
+
infinity.rb stick
|
49
|
+
pool.rb pool
|
50
|
+
linkedlist.rb linkedlist
|
51
|
+
semaphore.rb semaphore
|
52
|
+
pqueue.rb pqueue
|
53
|
+
censor.rb language
|
54
|
+
macther.rb language
|
55
|
+
basex.rb radix
|
56
|
+
minitar.rb archive-tar-minitar -or- folio
|
57
|
+
|
58
|
+
* Spun-Off But Still Available
|
59
|
+
|
60
|
+
These libraries have been spun-off into stand-alone gems, but remain
|
61
|
+
available via Facets too. Ultimately some of these will be removed
|
62
|
+
from Facets too (in particular the ansi libraries).
|
63
|
+
|
64
|
+
LIBRARY GEM
|
65
|
+
-------------------- ------------------------------
|
66
|
+
ansicode.rb ansi
|
67
|
+
progressbar.rb ansi
|
68
|
+
logger.rb ansi
|
69
|
+
tracepoint.rb tracepoint
|
70
|
+
dictionary.rb dictionary
|
71
|
+
recorder.rb recorder
|
72
|
+
ostructable.rb ostructable -or- openhash
|
73
|
+
openobject.rb openhash
|
74
|
+
opencollection.rb openhash
|
75
|
+
opencascade.rb openhash
|
76
|
+
openhash.rb openhash
|
77
|
+
openmodule.rb openmodule
|
78
|
+
fileable.rb fileable
|
79
|
+
expirable.rb expirable
|
80
|
+
enumerablepass.rb enumargs
|
81
|
+
|
82
|
+
* Deprecations Without Current Replacement
|
83
|
+
|
84
|
+
The libraries have been deprecated but do not yet have replacements.
|
85
|
+
Seperate gems for these are planned though.
|
86
|
+
|
87
|
+
* bbcode.rb
|
88
|
+
* ini.rb
|
89
|
+
* settings.rb
|
90
|
+
* xmlhash.rb
|
91
|
+
|
92
|
+
* Deprecations Merged Into CORE
|
93
|
+
|
94
|
+
These libraries have been deprecated because their functionality was merged into
|
95
|
+
the CORE library and/or made available in some another way.
|
96
|
+
|
97
|
+
* 1stclassmethod.rb #method! and #instance_method! are now part of CORE.
|
98
|
+
* elementor.rb #per has been added to CORE.
|
99
|
+
* elementwise.rb #ewise has been added to CORE.
|
100
|
+
* consoleutils.rb #ask is in CORE, for the rest see Ansi or Clio project.
|
101
|
+
* attr.rb Added Module#attr_setter to CORE, and separated the rest in MORE.
|
102
|
+
|
103
|
+
* General Deprecations
|
104
|
+
|
105
|
+
These libraries have simply been deprecated because they were found lacking in
|
106
|
+
some significant fashion.
|
107
|
+
|
108
|
+
* nilstatus.rb Poved rather useless, not to mention trivial.
|
109
|
+
* heap.rb Heap was just an alias for PQueue anyway. Use 'pqueue' instead.
|
110
|
+
* dependency.rb Other solutions exist that are much better (like Advisable).
|
111
|
+
* classmethods.rb #class_extend solution is more robust.
|
112
|
+
* ziputils.rb Have a look at Folio (gem install folio) for replacement.
|
113
|
+
* unheritable.rb Implementation is trivial and usefulness questionable.
|
114
|
+
* instantise.rb Replaced by instance_function.rb.
|
115
|
+
|
116
|
+
* Other Enhancements
|
117
|
+
|
118
|
+
* Fixed Proc#curry to work with #define_method (Thanks to R.Potter)
|
119
|
+
* Module#class_extension has been renamed to #class_extend (require 'facets/class_extend').
|
120
|
+
* kernel#instance is no longer in core; now it is an extra monkey patch for #instance_eval.
|
121
|
+
* Kernel#this has been removed. It is equivalent to 'method(__method__)'.
|
122
|
+
* BlankSlate is now an alias for BasicObject, and will be deprecated in the future.
|
123
|
+
* Kernel#method! and Module#instance_method! now use a global variable for their cache.
|
124
|
+
* #object_state (old name was #state) has been added to core.
|
125
|
+
|
126
|
+
|
3
127
|
== 2.6.0 / 2009-07-03
|
4
128
|
|
5
129
|
Facets 2.6.0 removes htmlfilter.rb and cssfilter.rb due to licensing
|
@@ -17,6 +141,8 @@ will become easier to maintain and thus more robust in the long run.
|
|
17
141
|
This release also fixes an important arity bug with the recently added
|
18
142
|
Module#extend method --one of the very few actual core overrides in Facets.
|
19
143
|
|
144
|
+
Changes:
|
145
|
+
|
20
146
|
* 7 Major Enhancements
|
21
147
|
|
22
148
|
* Removed htmlfilter.rb due to licensing issues.
|
@@ -44,6 +170,8 @@ Facets 2.5.2 is a simple maintentance release which fixed a few issues
|
|
44
170
|
in the new to_hash.rb library. This release also added String#lowercase
|
45
171
|
and String#uppercae.
|
46
172
|
|
173
|
+
Changes:
|
174
|
+
|
47
175
|
* 1 Major Enhancement
|
48
176
|
|
49
177
|
* added string/uppercase and lowercase
|
@@ -68,6 +196,8 @@ on the singleton class.
|
|
68
196
|
Special thanks to Erik Veenstra, Pit Capitan and especially Sandor Szücs
|
69
197
|
for their contributions to this release.
|
70
198
|
|
199
|
+
Changes:
|
200
|
+
|
71
201
|
* 7 Major Enhancements
|
72
202
|
|
73
203
|
* added Hash#group_by_value (thanks to Erik Veenstra)
|
@@ -137,17 +267,19 @@ Rubyists for configuration files, a full-on serializer like YAML
|
|
137
267
|
is often overkill. INI files provide a lightweight solution
|
138
268
|
specifically geared for configuration.
|
139
269
|
|
140
|
-
2) *filter.rb* by Brian Candler offers lazy evaluation chains of
|
270
|
+
2) *filter.rb* by Brian Candler offers lazy evaluation chains of
|
141
271
|
Enumerable methods. This is an elegant way to optimize contiguous
|
142
272
|
maps, selections, etc. --effective even on infinite enumerators.
|
143
273
|
(Note, the name of this library may be changed in the next release.)
|
144
274
|
|
145
|
-
While work remains to be done, I am happy to say, Facets is
|
275
|
+
While work remains to be done, I am happy to say, Facets is
|
146
276
|
finally beginning to approach the level of solidity I set out to
|
147
277
|
achieve just over a year ago. Thank the Maker!
|
148
278
|
|
149
279
|
Special thanks to Brian Candler, Jeena Paradies and Tyler Rick.
|
150
280
|
|
281
|
+
Changes:
|
282
|
+
|
151
283
|
* 9 Major Changes
|
152
284
|
|
153
285
|
* added Brian Candler's Enumerator::Filter
|
@@ -188,6 +320,8 @@ it will likely be the last that to use SVN. Facets will be switching to Git.
|
|
188
320
|
Also, some libraries that have been flagged "to be deprecated" for some time will
|
189
321
|
finally be so.
|
190
322
|
|
323
|
+
Changes:
|
324
|
+
|
191
325
|
* 8 Major Enhancements
|
192
326
|
|
193
327
|
* Re-added date.rb to lore library, and removed from core. (#r1014)
|
@@ -234,12 +368,14 @@ having to do with a Time extension. The problem has been fixed. In addition,
|
|
234
368
|
this release put Facets only a few pending adjustments away from full
|
235
369
|
Rails/ActiveSupport compatibility.
|
236
370
|
|
371
|
+
Changes:
|
372
|
+
|
237
373
|
* 10 Major Enhancements
|
238
374
|
|
239
375
|
* Added string/mask providing powerful string manipulation. (#997)
|
240
376
|
* BasicObject is now just a synonm for BlankSlate unless Ruby 1.9. (#1000)
|
241
377
|
* Added Symbol#plain?, Symbol#query? and Symbol#setter? (#1011)
|
242
|
-
* Removed Time#to_date.
|
378
|
+
* Removed Time#to_date.
|
243
379
|
* Due to clobberd RI Docs (!) this should have been in Lore lib date.rb
|
244
380
|
* Moved to Lore date.rb. (#1012)
|
245
381
|
* Re-added date.rb to lore library, and removed from core. (#1014)
|
@@ -255,7 +391,7 @@ Rails/ActiveSupport compatibility.
|
|
255
391
|
* 17 Minor Enhancements
|
256
392
|
|
257
393
|
* Moved style.rb to string/stylize.rb (#998)
|
258
|
-
* Renamed string/subtract to string/op_sub.
|
394
|
+
* Renamed string/subtract to string/op_sub.
|
259
395
|
Old name will remain for time being for compatability. (#1002)
|
260
396
|
* Module#instance_method_define? now only applies to public methods. (#1003)
|
261
397
|
* Array#index accepts a block (one of the few core overrides). (#1004)
|
@@ -298,7 +434,7 @@ As a REMINDER, Facets 2.4+ now encourages:
|
|
298
434
|
|
299
435
|
This is better than cherry-picking methods. It may seem counter-intuitive,
|
300
436
|
but it actually proves more advantages to do this for the sake of
|
301
|
-
improved interoperability. The practice of cherry-picking can become
|
437
|
+
improved interoperability. The practice of cherry-picking can become
|
302
438
|
problematic if other dependent libraries have cherry-picked different
|
303
439
|
methods. In those cases these distinctions go unaccounted and untested.
|
304
440
|
|
@@ -316,6 +452,8 @@ This release give special thanks to the following people for their contributions
|
|
316
452
|
|
317
453
|
And of course, to anyone else I failed to mention that has contributed.
|
318
454
|
|
455
|
+
Changes:
|
456
|
+
|
319
457
|
* 22 Major Enhancements
|
320
458
|
|
321
459
|
* Changed File#rewrite to not use the in-place change of the string.
|
@@ -360,7 +498,7 @@ And of course, to anyone else I failed to mention that has contributed.
|
|
360
498
|
* Split module/alias.rb up into alias_accessor, alias_module_function and alias_method_chain.
|
361
499
|
* Added #bump method to VersionNumber class.
|
362
500
|
* Module#instance_method_defined? now only applies to public methods. [minor]
|
363
|
-
* Renamed string/subtract to string/op_sub.
|
501
|
+
* Renamed string/subtract to string/op_sub.
|
364
502
|
Old name will remain for time being for compatability. [minor]
|
365
503
|
* Added #glob and #glob_first as extensions to Pathname.
|
366
504
|
* Moved style.rb to string/stylize.rb [minor]
|
@@ -389,6 +527,8 @@ And of course, to anyone else I failed to mention that has contributed.
|
|
389
527
|
|
390
528
|
Just some more of those great old work your ass off changes.
|
391
529
|
|
530
|
+
Changes:
|
531
|
+
|
392
532
|
* Major Enhancements
|
393
533
|
|
394
534
|
* Added Ken Bloom's DictionaryMatcher class from Ruby Quiz #103.
|
@@ -444,7 +584,7 @@ Just some more of those great old work your ass off changes.
|
|
444
584
|
* Maybe a poor name for the method, but you got a better one?
|
445
585
|
* Made FileUtils#whereis a module_function again like it used to be. Because:
|
446
586
|
(1) that seems to be the way most other FileUtils methods are (cd, mkdir, cp, ...) and the most
|
447
|
-
obvious way that users would WANT to use FileUtils: FileUtils.whereis("ruby").
|
587
|
+
obvious way that users would WANT to use FileUtils: FileUtils.whereis("ruby").
|
448
588
|
(2) I see module_function used in other comparible parts of Facets: UploadUtils, ConsoleUtils,
|
449
589
|
ZipUtils, FileUtils#safe_ln, ...
|
450
590
|
(3) My code that relied on the old module_function behavior was breaking
|
@@ -456,6 +596,8 @@ Just some more of those great old work your ass off changes.
|
|
456
596
|
This release takes aim at improving compatability with ActiveSupport.
|
457
597
|
It also reintroduces an improved paramix.rb.
|
458
598
|
|
599
|
+
Changes:
|
600
|
+
|
459
601
|
* 4 Major Enhancements
|
460
602
|
|
461
603
|
* A much improved paramix.rb has been returned to the library.
|
@@ -502,6 +644,8 @@ has been improved. In addition, we are getting very close to full
|
|
502
644
|
ActiveSupport, and Ruby 1.9, interoperability. Expect this
|
503
645
|
to be complete in the next minor release or two.
|
504
646
|
|
647
|
+
Changes:
|
648
|
+
|
505
649
|
* Enhancements
|
506
650
|
|
507
651
|
* String#to_re and String#to_rx have swapped default behaviors. #to_rx escapes, #to_re does not.
|
@@ -777,6 +921,8 @@ Amoung other changes with this release, cloneable.rb is
|
|
777
921
|
now a true deep dup/clone mixin; tracepoint.rb returns
|
778
922
|
to the library.
|
779
923
|
|
924
|
+
Changes:
|
925
|
+
|
780
926
|
* Reorganized library into smaller groups: core, more, class and mixin.
|
781
927
|
* Added tracepoint.rb back to the library.
|
782
928
|
* Fixed multiglob_r bug, so it will NOT follow symlinks.
|
@@ -822,6 +968,8 @@ to the library.
|
|
822
968
|
All method redirects are now in core, to ensure
|
823
969
|
there are no more name clashes.
|
824
970
|
|
971
|
+
Changes:
|
972
|
+
|
825
973
|
* Got rid of methods subdir. All method redirects are in core/.
|
826
974
|
|
827
975
|
* Moved doc/wiki to apiwiki b/c of Rubyforge's wiki.
|
@@ -857,6 +1005,8 @@ there are no more name clashes.
|
|
857
1005
|
This release provides improved rdocs and prepares facets for use with Ruby 1.9.
|
858
1006
|
It also adds Matthew Harris' duration.rb library. Bug thanks to Matthew!
|
859
1007
|
|
1008
|
+
Changes:
|
1009
|
+
|
860
1010
|
* A lot of rdoc updates to core extensions --as promised ;)
|
861
1011
|
* Just about every method now has at least a brief explinaiton and an example.
|
862
1012
|
* integer/bitmask.rb has changed a bit --pun intended ;) Deprecated some methods and now use "~" instead of "-" to clear bits.
|
@@ -949,6 +1099,8 @@ It also adds Matthew Harris' duration.rb library. Bug thanks to Matthew!
|
|
949
1099
|
|
950
1100
|
== 2.1.3 / 2007-11-28
|
951
1101
|
|
1102
|
+
Changes:
|
1103
|
+
|
952
1104
|
* Fixed minor oddity in Enumerable/collate.
|
953
1105
|
* Fixed major issue with 2.1.2 where it would not core facets correctly.
|
954
1106
|
* Array#to_h used flatten, but it needs to be flatten(1).
|
@@ -958,6 +1110,8 @@ It also adds Matthew Harris' duration.rb library. Bug thanks to Matthew!
|
|
958
1110
|
|
959
1111
|
== 2.1.2 / 2007-11-22
|
960
1112
|
|
1113
|
+
Changes:
|
1114
|
+
|
961
1115
|
* Dir::multiglob no longer handels -/+ modifiers. Use FileList instead.
|
962
1116
|
* Fixed task/install script.
|
963
1117
|
* Added copyright notice to COPYING file.
|
@@ -967,6 +1121,8 @@ It also adds Matthew Harris' duration.rb library. Bug thanks to Matthew!
|
|
967
1121
|
|
968
1122
|
== 2.1.1 / 2007-11-16
|
969
1123
|
|
1124
|
+
Changes:
|
1125
|
+
|
970
1126
|
* Fixed bug in command.rb that clobbered options.
|
971
1127
|
* Added kernel/ergo.rb.
|
972
1128
|
* Removed debug code.
|
@@ -988,6 +1144,8 @@ as well as attr_reader!, attr_writer! and attr_accessor!
|
|
988
1144
|
for flag attributes, plus alias_xxx methods for all
|
989
1145
|
attr_xxx methods.
|
990
1146
|
|
1147
|
+
Changes:
|
1148
|
+
|
991
1149
|
* command.rb has been completely rewritten. The API has changed completely!
|
992
1150
|
* There is no longer a Commmand::Optoins class. Use Console::Arguments instead.
|
993
1151
|
* Added BiCrypt class to crypt.rb for simple two-way encyrption.
|
@@ -1045,6 +1203,8 @@ attr_xxx methods.
|
|
1045
1203
|
|
1046
1204
|
== 2.0.5 / 2007-11-05
|
1047
1205
|
|
1206
|
+
Changes:
|
1207
|
+
|
1048
1208
|
* Added final methods Gavin Sinclair's Extensions project (contributed by Noah Gibbs).
|
1049
1209
|
* Fixes bug with Dictionary#initialize
|
1050
1210
|
* Fixes bug with Hash#-
|
@@ -1054,9 +1214,12 @@ attr_xxx methods.
|
|
1054
1214
|
|
1055
1215
|
== 2.0.4 / 2007-11-04
|
1056
1216
|
|
1217
|
+
Changes:
|
1057
1218
|
|
1058
1219
|
== 2.0.3 / 2007-11-02
|
1059
1220
|
|
1221
|
+
Changes:
|
1222
|
+
|
1060
1223
|
* Touch up to methods task.
|
1061
1224
|
* Update rsync filter
|
1062
1225
|
* Minor updates fixing issues highlighted by running crosstest.
|
@@ -1073,11 +1236,15 @@ attr_xxx methods.
|
|
1073
1236
|
|
1074
1237
|
2007-11-01 transami
|
1075
1238
|
|
1239
|
+
Changes:
|
1240
|
+
|
1076
1241
|
* Added array/only, symbol/to_proc (where did it go?) and hash/select.
|
1077
1242
|
|
1078
1243
|
|
1079
1244
|
2007-10-31 transami
|
1080
1245
|
|
1246
|
+
Changes:
|
1247
|
+
|
1081
1248
|
* Update roll file.
|
1082
1249
|
* Moved test_command_options to test_command.
|
1083
1250
|
* Update dictionary test to check dup and autohash.
|
@@ -1105,6 +1272,8 @@ attr_xxx methods.
|
|
1105
1272
|
|
1106
1273
|
2007-10-28 transami
|
1107
1274
|
|
1275
|
+
Changes:
|
1276
|
+
|
1108
1277
|
* Modifications to command.rb, snapshot and rbsystem.
|
1109
1278
|
* Merged command.rb and command_options.rb into command.rb.
|
1110
1279
|
* Added to_data aliases to snapshot.rb
|
@@ -1113,24 +1282,29 @@ attr_xxx methods.
|
|
1113
1282
|
|
1114
1283
|
2007-10-27 transami
|
1115
1284
|
|
1116
|
-
|
1117
|
-
* Allow OpenStruct#initialize to take a setter block.
|
1118
|
-
* Downloader needs 'wb' flag rather then just 'w'.
|
1119
|
-
* Fixed typo and removed embedded test.
|
1120
|
-
* Fixed bug in command_options.rb, putting the class back in the Console namespace.
|
1285
|
+
Changes:
|
1121
1286
|
|
1287
|
+
* Removed embedded test from overload.rb.
|
1288
|
+
* Allow OpenStruct#initialize to take a setter block.
|
1289
|
+
* Downloader needs 'wb' flag rather then just 'w'.
|
1290
|
+
* Fixed typo and removed embedded test.
|
1291
|
+
* Fixed bug in command_options.rb, putting the class back in the Console namespace.
|
1122
1292
|
|
1123
1293
|
* improved module/traits.rb
|
1124
1294
|
|
1125
1295
|
|
1126
1296
|
== 2.0.2 / 2007-10-08
|
1127
1297
|
|
1298
|
+
Changes:
|
1299
|
+
|
1128
1300
|
* cleaned up some test and updated version to 2.0.2
|
1129
1301
|
* update methods to eleminate duplicate file names between lib/core and lib/methods
|
1130
1302
|
|
1131
1303
|
|
1132
1304
|
== 2.0.0 / 2007-10-02
|
1133
1305
|
|
1306
|
+
Changes:
|
1307
|
+
|
1134
1308
|
2007-10-07 transami
|
1135
1309
|
|
1136
1310
|
* doc session - clean up array methods
|
@@ -1489,6 +1663,8 @@ attr_xxx methods.
|
|
1489
1663
|
|
1490
1664
|
== 1.8.54 / 2007-02-19
|
1491
1665
|
|
1666
|
+
Changes:
|
1667
|
+
|
1492
1668
|
* added reqiure to ostruct.rb test
|
1493
1669
|
* fix to command.rb's initializer
|
1494
1670
|
* fixed bug with times.rb beginning_of_year and beginning_of_month
|
@@ -1550,6 +1726,8 @@ attr_xxx methods.
|
|
1550
1726
|
|
1551
1727
|
== 1.8.0 / 2007-01-24
|
1552
1728
|
|
1729
|
+
Changes:
|
1730
|
+
|
1553
1731
|
* added buildingblock.rb, replaced builderobject.rb
|
1554
1732
|
* adjust require for "yored" files
|
1555
1733
|
* HtmlBuilder and XMLBuilder aer now based on BuildingBlock
|
@@ -1754,6 +1932,8 @@ attr_xxx methods.
|
|
1754
1932
|
|
1755
1933
|
== 1.7.0 / 2006-07-25
|
1756
1934
|
|
1935
|
+
Changes:
|
1936
|
+
|
1757
1937
|
* fix to inifinty.rb
|
1758
1938
|
* comment on cut.rb needed a quick fix
|
1759
1939
|
* updated infinity
|
@@ -1785,6 +1965,8 @@ attr_xxx methods.
|
|
1785
1965
|
|
1786
1966
|
== 1.6.0
|
1787
1967
|
|
1968
|
+
Changes:
|
1969
|
+
|
1788
1970
|
* PrivateAccess expiremental class
|
1789
1971
|
* added reverse_merge (from Active Support)
|
1790
1972
|
* adjustments to stringify_keys, record normalize_keys
|
@@ -1835,6 +2017,8 @@ attr_xxx methods.
|
|
1835
2017
|
|
1836
2018
|
== 1.4.5 / 2006-07-05
|
1837
2019
|
|
2020
|
+
Changes:
|
2021
|
+
|
1838
2022
|
* move ProjectInfo to proj/info
|
1839
2023
|
* better arrangment of repository
|
1840
2024
|
* Added nil#status, module#alias_method_chain and enumerable#cascade.
|
@@ -1856,6 +2040,8 @@ attr_xxx methods.
|
|
1856
2040
|
|
1857
2041
|
== 1.4.4 / 2007-07-03
|
1858
2042
|
|
2043
|
+
Changes:
|
2044
|
+
|
1859
2045
|
* added nil#status - Allows a messgae to be passed through
|
1860
2046
|
a failure chain.
|
1861
2047
|
* added module#alias_method_chain - from rails this is clever
|
@@ -1877,6 +2063,8 @@ attr_xxx methods.
|
|
1877
2063
|
|
1878
2064
|
== 1.4.2 / 2006-06-21
|
1879
2065
|
|
2066
|
+
Changes:
|
2067
|
+
|
1880
2068
|
* Started using Darcs --finally!
|
1881
2069
|
* Transition to Darcs has interupted ChangeLog though :(
|
1882
2070
|
* Mostly minor fixes in prepeartion for official 1.4 release.
|
@@ -1890,6 +2078,8 @@ attr_xxx methods.
|
|
1890
2078
|
|
1891
2079
|
== 1.4.0 / 2006-06-05
|
1892
2080
|
|
2081
|
+
Changes:
|
2082
|
+
|
1893
2083
|
* Added Cookie, HTTP and HTTPAccess of ...'s library.
|
1894
2084
|
* OpenObject's __get__ and __set__ methods have been changed
|
1895
2085
|
to __fetch__ and __store__ to correspond to the Hash methods.
|
@@ -1915,6 +2105,8 @@ attr_xxx methods.
|
|
1915
2105
|
|
1916
2106
|
== 1.3.1 / 2006-04-17
|
1917
2107
|
|
2108
|
+
Changes:
|
2109
|
+
|
1918
2110
|
* Deprecated string/to_arr, and slightly adjusted string#to_a.
|
1919
2111
|
(Not commonly used so not a major change.)
|
1920
2112
|
* Minor bug fixes.
|
@@ -1922,6 +2114,8 @@ attr_xxx methods.
|
|
1922
2114
|
|
1923
2115
|
== 1.3.0 / 2006-04-05
|
1924
2116
|
|
2117
|
+
Changes:
|
2118
|
+
|
1925
2119
|
* Ported parts of Nitro's Glue library to Facets.
|
1926
2120
|
* more/aspects.rb
|
1927
2121
|
* core/module/on_included.rb
|
@@ -1936,23 +2130,31 @@ attr_xxx methods.
|
|
1936
2130
|
|
1937
2131
|
== 1.2.1 / 2006-03-29
|
1938
2132
|
|
2133
|
+
Changes:
|
2134
|
+
|
1939
2135
|
* kernel/meta has been renamed to kernel/instance
|
1940
2136
|
|
1941
2137
|
|
1942
2138
|
== 1.2.0 / 2006-03-24
|
1943
2139
|
|
2140
|
+
Changes:
|
2141
|
+
|
1944
2142
|
* Added zimba.tm's string/modulize, pathize and methodize.
|
1945
2143
|
* Added some Gem methods, self/active?, self/gemspec, self/gempath.
|
1946
2144
|
|
1947
2145
|
|
1948
2146
|
== 1.0.3 / 2006-02-10
|
1949
2147
|
|
2148
|
+
Changes:
|
2149
|
+
|
1950
2150
|
* A last ditch attempt to keep facets and calibre as one project.
|
1951
2151
|
* Added _why's Array modulo.
|
1952
2152
|
|
1953
2153
|
|
1954
2154
|
== 1.0.0 / 2005-12-04
|
1955
2155
|
|
2156
|
+
Changes:
|
2157
|
+
|
1956
2158
|
* Sped up string#similarity.
|
1957
2159
|
* By popular protest deprecated usage of "AClass.use Facets, :amethod".
|
1958
2160
|
* Created nicer layout of facets/support, /group, /english (one day /method).
|
@@ -1960,7 +2162,11 @@ attr_xxx methods.
|
|
1960
2162
|
* All is now well preped for a Rolls release shoud that come about.
|
1961
2163
|
|
1962
2164
|
|
1963
|
-
== 0.10.30
|
2165
|
+
== 0.10.30
|
2166
|
+
|
2167
|
+
Halloween
|
2168
|
+
|
2169
|
+
Changes:
|
1964
2170
|
|
1965
2171
|
* Change OrderedHash (ohash.rb) to Dictionary (dictionary.rb).
|
1966
2172
|
* Change BlankSlate (blankslate.rb) to BasicObject (basicobject.rb).
|
@@ -1972,7 +2178,11 @@ attr_xxx methods.
|
|
1972
2178
|
Use #every or #ew instead.
|
1973
2179
|
|
1974
2180
|
|
1975
|
-
== 0.10.11
|
2181
|
+
== 0.10.11
|
2182
|
+
|
2183
|
+
Palapable
|
2184
|
+
|
2185
|
+
Changes:
|
1976
2186
|
|
1977
2187
|
* Merged Mega into Facets. I put the old Mega ChangeLog at
|
1978
2188
|
the bottom of this document.
|
@@ -1990,7 +2200,11 @@ attr_xxx methods.
|
|
1990
2200
|
works in practice.
|
1991
2201
|
|
1992
2202
|
|
1993
|
-
== 0.9.5
|
2203
|
+
== 0.9.5
|
2204
|
+
|
2205
|
+
Rebirth
|
2206
|
+
|
2207
|
+
Changes:
|
1994
2208
|
|
1995
2209
|
* Rebirth of Facets! As cool as the name Nano is, it became clear
|
1996
2210
|
that most people are drawn toward the name Facets. So we are
|
@@ -2009,7 +2223,11 @@ attr_xxx methods.
|
|
2009
2223
|
the aliasing system.
|
2010
2224
|
|
2011
2225
|
|
2012
|
-
== 0.9.2
|
2226
|
+
== 0.9.2
|
2227
|
+
|
2228
|
+
Littles
|
2229
|
+
|
2230
|
+
Changes:
|
2013
2231
|
|
2014
2232
|
* Added string/starts_with? and string/ends_with?
|
2015
2233
|
* Fixed module/memoize to cache on a per class/module bases.
|
@@ -2020,7 +2238,11 @@ attr_xxx methods.
|
|
2020
2238
|
* Renamed module/super_send to module/send_as.
|
2021
2239
|
|
2022
2240
|
|
2023
|
-
== 0.9.1
|
2241
|
+
== 0.9.1
|
2242
|
+
|
2243
|
+
Wraps
|
2244
|
+
|
2245
|
+
Changes:
|
2024
2246
|
|
2025
2247
|
* Added module/nesting (not to be confused with the class method Module::nesting).
|
2026
2248
|
* Thanks goes to Gavien Kistner for new string/word_wrap methods
|
@@ -2031,7 +2253,11 @@ attr_xxx methods.
|
|
2031
2253
|
what one might expect.
|
2032
2254
|
|
2033
2255
|
|
2034
|
-
== 0.9.0 / 2005-10-28
|
2256
|
+
== 0.9.0 / 2005-10-28
|
2257
|
+
|
2258
|
+
NotUorI
|
2259
|
+
|
2260
|
+
Changes:
|
2035
2261
|
|
2036
2262
|
* Deprecated object#special_class, which was a method for (class<<self;self;end).
|
2037
2263
|
Already have too many aliases for this, and though the name is fitting, the simpler
|
@@ -2043,7 +2269,11 @@ attr_xxx methods.
|
|
2043
2269
|
David A. Black, Gavin Sinclair, Nikolai Weibull and Christian Neukirchen.
|
2044
2270
|
|
2045
2271
|
|
2046
|
-
== 0.8.3
|
2272
|
+
== 0.8.3
|
2273
|
+
|
2274
|
+
UorI
|
2275
|
+
|
2276
|
+
Changes:
|
2047
2277
|
|
2048
2278
|
* Added kernel/uri and kernel/unuri
|
2049
2279
|
* (Good idea?) removed methods module/sattr, sattr_reader, &c. Instead created object/meta
|
@@ -2054,7 +2284,11 @@ attr_xxx methods.
|
|
2054
2284
|
* Class method file names now begin with '::' to separate them from instance methods.
|
2055
2285
|
|
2056
2286
|
|
2057
|
-
== 0.8.2
|
2287
|
+
== 0.8.2
|
2288
|
+
|
2289
|
+
Nano Revolution
|
2290
|
+
|
2291
|
+
Changes:
|
2058
2292
|
|
2059
2293
|
* Name Change! What was Ruby Facets is now Nano Methods!
|
2060
2294
|
* New minor version as there has been a change of plans with the integration of what was Carats.
|
@@ -2090,14 +2324,22 @@ attr_xxx methods.
|
|
2090
2324
|
* Fixed bug with string/capitalized? which wasn't always giving the correct result.
|
2091
2325
|
|
2092
2326
|
|
2093
|
-
== 0.7.2 / 2005-05-22
|
2327
|
+
== 0.7.2 / 2005-05-22
|
2328
|
+
|
2329
|
+
George II
|
2330
|
+
|
2331
|
+
Changes:
|
2094
2332
|
|
2095
2333
|
* Added a class method dir/recurse which allows one to loop through a dir and all its
|
2096
2334
|
subdirs, etc. It also has an alias #ls_r. Thanks goes to George Maschovitis for this.
|
2097
2335
|
* Changed array/permute to array/each_permutation.
|
2098
2336
|
|
2099
2337
|
|
2100
|
-
== 0.7.1
|
2338
|
+
== 0.7.1
|
2339
|
+
|
2340
|
+
Quick George
|
2341
|
+
|
2342
|
+
Changes:
|
2101
2343
|
|
2102
2344
|
* Added facet.rb, although expiremental it makes it possible to use atomic methods without
|
2103
2345
|
specificaly requiring them. It uses Object#method_missing to require them as needed.
|
@@ -2105,7 +2347,11 @@ attr_xxx methods.
|
|
2105
2347
|
These will see a great deal of continued improvement in the future.
|
2106
2348
|
|
2107
2349
|
|
2108
|
-
== 0.7.0
|
2350
|
+
== 0.7.0
|
2351
|
+
|
2352
|
+
Georgian Transform
|
2353
|
+
|
2354
|
+
Changes:
|
2109
2355
|
|
2110
2356
|
* All methods with names containing non-alphanumeric characters now have facet
|
2111
2357
|
files without those special characters. This removes some incompatibilites with
|
@@ -2122,7 +2368,11 @@ attr_xxx methods.
|
|
2122
2368
|
* Added array/permute.
|
2123
2369
|
|
2124
2370
|
|
2125
|
-
== 0.6.3
|
2371
|
+
== 0.6.3
|
2372
|
+
|
2373
|
+
Gemstone
|
2374
|
+
|
2375
|
+
Changes:
|
2126
2376
|
|
2127
2377
|
* Gem is now avaliable!
|
2128
2378
|
* Added kernel/require_all which allows one to require a pattern of files,
|
@@ -2141,7 +2391,11 @@ attr_xxx methods.
|
|
2141
2391
|
* Added array/last_index. (Thanks goes to Jabari)
|
2142
2392
|
|
2143
2393
|
|
2144
|
-
== 0.6.2
|
2394
|
+
== 0.6.2
|
2395
|
+
|
2396
|
+
Refinement I
|
2397
|
+
|
2398
|
+
Changes:
|
2145
2399
|
|
2146
2400
|
* Added kernel/resc as a shortcut for Regexp.escape.
|
2147
2401
|
* Renamed hash/keys_to_string to hash/key_to_s and
|
@@ -2163,26 +2417,42 @@ attr_xxx methods.
|
|
2163
2417
|
* Added string/shatter which is similar to split but includes
|
2164
2418
|
the matched portions of text.
|
2165
2419
|
|
2166
|
-
== 0.6.1
|
2420
|
+
== 0.6.1
|
2421
|
+
|
2422
|
+
Florian's Mixes
|
2423
|
+
|
2424
|
+
Changes:
|
2167
2425
|
|
2168
2426
|
* Updated the current set of mix files which were still from
|
2169
2427
|
version 0.5.0. (2004-12-31)
|
2170
2428
|
|
2171
2429
|
|
2172
|
-
== 0.6.0
|
2430
|
+
== 0.6.0
|
2431
|
+
|
2432
|
+
Florian's Onslaught
|
2433
|
+
|
2434
|
+
Changes:
|
2173
2435
|
|
2174
2436
|
* Major revisions made by Florian's onslaught. (2004-12-28)
|
2175
2437
|
* First general public release.
|
2176
2438
|
|
2177
2439
|
|
2178
|
-
== 0.5.0
|
2440
|
+
== 0.5.0
|
2441
|
+
|
2442
|
+
Fit for First
|
2443
|
+
|
2444
|
+
Changes:
|
2179
2445
|
|
2180
2446
|
* This is the beginning of offical releases. (2004-12-23)
|
2181
2447
|
* Now called Facets.
|
2182
2448
|
* Changed layout to be completely atomic! (2004-10-30)
|
2183
2449
|
|
2184
2450
|
|
2185
|
-
== 0.4.0
|
2451
|
+
== 0.4.0
|
2452
|
+
|
2453
|
+
Raspberry
|
2454
|
+
|
2455
|
+
Changes:
|
2186
2456
|
|
2187
2457
|
* Scoured the Ruby world for useful additions.
|
2188
2458
|
* Changed name again from A.B.C. to Raspberry.
|
@@ -2193,20 +2463,32 @@ attr_xxx methods.
|
|
2193
2463
|
* Removed services.rb unitl in gets fixed and a better name.
|
2194
2464
|
|
2195
2465
|
|
2196
|
-
== 0.3.3
|
2466
|
+
== 0.3.3
|
2467
|
+
|
2468
|
+
Mega2
|
2469
|
+
|
2470
|
+
Changes:
|
2197
2471
|
|
2198
2472
|
* Added inheritable.rb, a lib for creating class vars inherit from ancestors
|
2199
2473
|
* Addes annotations.rb, a lightweight metadata system good for annotating
|
2200
2474
|
methods esspecially. It is built on top of inheritable.rb.
|
2201
2475
|
|
2202
2476
|
|
2203
|
-
== 0.3.2
|
2477
|
+
== 0.3.2
|
2478
|
+
|
2479
|
+
Mega
|
2480
|
+
|
2481
|
+
Changes:
|
2204
2482
|
|
2205
2483
|
* Added services.rb, a lib for managing methods as first class objects
|
2206
2484
|
* Fixed/cleaned-up orm_supprt.rb
|
2207
2485
|
|
2208
2486
|
|
2209
|
-
== 0.3.0
|
2487
|
+
== 0.3.0
|
2488
|
+
|
2489
|
+
ABC
|
2490
|
+
|
2491
|
+
Changes:
|
2210
2492
|
|
2211
2493
|
* Reorganinzed all of this together in a nice neat way.
|
2212
2494
|
* Changed name of library from Succ to A.B.C.
|
@@ -2223,23 +2505,37 @@ attr_xxx methods.
|
|
2223
2505
|
|
2224
2506
|
== 0.3.1
|
2225
2507
|
|
2508
|
+
Changes:
|
2509
|
+
|
2226
2510
|
* Aliased #autoload_classes with #autorequire.
|
2227
2511
|
* Added #strfbits and #strfbytes to binary_multiplers.rb.
|
2228
2512
|
|
2229
2513
|
|
2230
|
-
== 0.2.0
|
2514
|
+
== 0.2.0
|
2515
|
+
|
2516
|
+
Succ
|
2517
|
+
|
2518
|
+
Changes:
|
2231
2519
|
|
2232
2520
|
* A number of new methods added.
|
2233
2521
|
* Renamed it Succ for "successor". (2003-05-31)
|
2234
2522
|
* Initial public release
|
2235
2523
|
|
2236
2524
|
|
2237
|
-
== 0.1.0
|
2525
|
+
== 0.1.0
|
2526
|
+
|
2527
|
+
Carats
|
2528
|
+
|
2529
|
+
Changes:
|
2238
2530
|
|
2239
2531
|
* Early Development as Ruby Carats
|
2240
2532
|
|
2241
2533
|
|
2242
|
-
== 0.0.0
|
2534
|
+
== 0.0.0
|
2535
|
+
|
2536
|
+
TomsLib
|
2537
|
+
|
2538
|
+
Changes:
|
2243
2539
|
|
2244
2540
|
* Tomslib's just a few useful methods. (2002-07-01)
|
2245
2541
|
|