public
Description: Generates universally unique identifiers (UUIDs) for use in distributed applications.
Homepage:
Clone URL: git://github.com/assaf/uuid.git
Click here to lend your support to: uuid and make a donation at www.pledgie.com !
Takeshi Abe (author)
Wed Jul 08 19:50:59 -0700 2009
assaf (committer)
Wed Jul 08 23:13:28 -0700 2009
uuid / CHANGELOG
100644 44 lines (36 sloc) 1.911 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
2.0.2 (2009-06-10)
* Maintenance release. Added uuid.gemspec file in packaging, tested against
Ruby 1.9.1.
 
2.0.1 (2008-08-28)
* Fixed: MAC address parses correctly when using colon as separator, not
            when using hyphen (ruby-mingw32). If your MAC address is all zero
            (check with UUID.new.inspect), remove the ruby-uuid file, and it
            will reset to the actual MAC address. (Rasha)
* Fixed: UUID.new.inspect not showing full MAC address.
 
2.0.0 (2008-08-28)
* Changed: API. UUID.generate still works as it always did, but the rest of
            the API is brand spanking new, so if you rely on anything besides
UUID.generate, or just curious, check out the rdocs.
* Changed: uuid.state replaced by ruby-uuid file. By default stored in
            /var/tmp, or if that path is not accessible, as .ruby-uuid in the
            home directory.
* Changed: ruby-uuid is now stored as binary file (faster read/write), if you
            need to have a peek, open irb and type UUID.new.inspect.
* Changed: Source code and documentation for this release hosted on the
            wonderful Github: http://github.com/assaf/uuid
 
1.0.4 (2007-08-28)
* Changed: By default creates the uuid.state file in the working directory,
            not in the installation directory, which requires sudo privileges
            (e.g. gem).
 
1.0.3 (2006-11-08)
* Fixed: Work around YAML bug in serializing that occurs when MAC address
            consists only of decimal digits. Credit: ebuprofen"
 
1.0.2 (2006-08-19)
* Changed: Constants are not conditionally defined (removes warnings when
            using in Rails.
 
1.0.1 (2006-07-27)
* Added: Regular expressions to test if a string is a UUID.
* Changed: When used in ActiveRecord, adds as callback instead of overriding
            save.
 
1.0.0 (2005-11-20)
* Changed: Separated form reliable-msg into its own package.