methodmissing / extlib forked from datamapper/extlib

General Ruby extensions for DataMapper and DataObjects

extlib / History.txt
100644 61 lines (40 sloc) 1.707 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
=== 0.9.11 / not released
 
* 1 major enhancement:
 
  * Added LazyModule, providing similar capabilities to traits in
    Smalltalk
 
* 5 minor enhancements:
 
  * Added Array#to_hash and Array#to_mash
  * Silenced warnings when running in verbose mode
  * Add ByteArray for representing binary data explicitly
  * Alias Pathname#to_s to Pathname#to_str when not defined
  * Added Object#try_call
 
* 2 bug fixes:
 
  * Updated Module.find_const to use const_missing if constant not found
  * Fixed LazyArray#equal? to compare object_ids
 
=== 0.9.10 / 2009-01-19
 
* 1 major enhancement:
 
  * Ruby 1.9.1 compatibility
 
* 1 minor enhancement:
 
  * Updated LazyArray#eql? and LazyArray#== to compare without lazy
    loading if possible.
 
* 3 bug fixes:
 
  * Fix for inheritance and hooks
  * Fix for Class inheritable accessor to use #try_dup
  * Fix for LazyArray to be more explicit in delegating to Array,
    to lessen conflicts in subclasses
 
=== 0.9.9 / 2008-12-07
 
* 1 major enhancement:
 
  * Updated LazyArray to have a tail/head so that it can append/prepend
    without lazy-loading. This will eliminate some too-eager loading
    from DataMapper::Collection, and (in certain cases) will boost
    performance significantly.
 
* 3 minor enhancements:
 
  * Minor Ruby 1.9.1 fixes. RSpec still needs to be updated to support
    1.9.1 before everything can be verified completely.
  * Updated Extlib::Inflection so that the plural of "cow" is now
    "cows" instead of "kine".
  * Misc documentation updates.
 
* 2 bug fixes:
 
  * Fixed Extlib::Pooling Threading issue on JRuby and Windows.
  * Removed Object#encoded_hash. It was not used by DataMapper or Merb,
    and the specs were failing for JRuby.