Release Name: 0.3.1
Notes:
= Attic - v0.3 ALPHA
A place for Ruby objects to hide instance variables.
== Alpha Notice
This library is fresh (est 2009-07-06) and barely tested. It's fun to use but not reliable yet. In particular:
* Does not work with Symbols or Fixnum object
== Example
require 'attic'
String.extend Attic
String.attic :timestamp
a = "anything"
a.timestamp = "1980-11-18"
a.instance_variables # => []
a.timestamp # 1980-11-18
== Installation
Via Rubygems, one of:
$ gem install attic
$ gem install delano-attic --source http://gems.github.com/
or via download:
* attic-latest.tar.gz[http://github.com/delano/attic/tarball/latest]
* attic-latest.zip[http://github.com/delano/attic/zipball/latest]
== Credits
* Delano (@solutious.com)
== License
See: LICENSE.txt
Changes:
ATTIC, CHANGES
#### 0.3.1 (2009-07-13) ###############################
CRIPES! I'd forgotten to update the gemspec.
#### 0.3 (2009-07-11) ###############################
NOTE: A complete re-write from 0.2
* FIXED: Now works on any Object except Symbol and Fixnum
* ADDED: attic_vars method
#### 0.2 (2009-07-08) ###############################
NOTE: Initial public release
|